.accordion-container {
  max-width: 70%;
}

.accordion {
  border: 1px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000000;
  padding: 18px 25px;
  box-sizing: border-box;
  cursor: pointer;
  color: white;
  transition: background 0.3s ease;
  width: 100%;

}

.accordion-header:hover {
  background: #00000096;
}

.accordion-title {
  font-size: 18px;
  font-weight: 600;
  flex: 1;
  color: rgb(255, 255, 255);
}

.status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 10px;
  width: fit-content;
}


.ac-d{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 90%;
}
.status-badge.complete {
  background: #d4edda;
  color: #155724;
}

.status-badge.incomplete {
  background: #f8d7da;
  color: #721c24;
}
/* 
.accordion-icon {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
} */

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: white;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}
.accordion.open .accordion-content {
  min-height: fit-content; /* adjust as needed */
  padding-bottom: 50px;
  padding-top: 30px;
}
.accordion.open .accordion-icon {
  transform: rotate(180deg);
}


.acc-content-s{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.w50 {
    width: 100% !important;
}

.ql-toolbar.ql-snow{
    width: 100% !important;
    margin-top: 20px;
}

.acc-btns-s{
    width: 100%;
    display: flex;
    padding-top: 20px;
    justify-content: flex-end;
    gap: 20px;
}

.acc-btns-s button{
    border: 3px solid black;
    background-color: transparent;
    font-weight: 600;
    color: black;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 18px;
    font-family: "Josefin Sans", sans-serif;
    cursor: pointer;
}