/* layout.css */
.assignment-panel-wrapper {
  position: relative; /* ADD this line */
  background: linear-gradient(to bottom, #fff, #f9f9f9);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden; /* optional: hides overflow of bg-circles */
}

.assignment-panel-layout {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.assignment-left-filters,
.assignment-center-main,
.assignment-right-actions {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.assignment-left-filters {
  flex: 1;
  max-width: 250px;
}

.assignment-center-main {
  flex: 2;
}

.assignment-right-actions {
  flex: 1;
  max-width: 200px;
}

/*-------------------------------responsive for tablet----------------------------------------*/
@media (max-width: 1024px) {
  .assignment-panel-layout {
    flex-direction: column;
  }

  .assignment-left-filters,
  .assignment-center-main,
  .assignment-right-actions {
    max-width: 100%;
  }

  .assignment-right-actions {
    margin-top: 20px;
  }
}
/*-----------------------------Assignment panel heading layout-------------------------------------*/
.assignment-header-bar {
  background-color: #972141 !important;
  padding: 1.2rem;
  text-align: center;
  color: white !important;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}

.assignment-header-bar .assignment-title {
  margin: 0;
  font-size: 2rem;
  color: white !important;
  letter-spacing: 0.5px;
}



/*---------------------------------------------- Right column button layout------------------------------------------------ */
/* 📌 Parent container (right sidebar) */
.assignment-right-actions {
  display: flex;
  flex-direction: column;
  gap: 12px; /* spacing between buttons */
  align-items: stretch; /* make all buttons same width */
  padding: 16px;
}

/* 🎯 Buttons uniform style */
.assignment-right-actions .action-button {
  width: 100%;
  padding: 12px 16px;
  background-color: #fff;
  border: 2px solid #972141;
  color: #972141;
  font-weight: 600;
  text-align: center;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 15px;
  line-height: 1; /* 🔧 ensures tight vertical alignment */
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  display: flex;            /* 🔧 forces precise centering */
  justify-content: center;
  align-items: center;
  height: 48px;             /* 🔧 consistent height */
}


/* 🖱️ Hover effect */
.assignment-right-actions .action-button:hover {
  background-color: #972141;
  color: #fff;
}

/*----------------------------------------------Ends here------------------------------------------------ */


/*----------------------------------------------bg-circle------------------------------------------------ */


