.modal-head-container {
    border-bottom: 2px solid #f1f1f1;
    margin-bottom: 6px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}
.modal-title {
    text-align: center;
    font-size: 18px;
    color: #0d4d46;
}
.flex-label {
    display: flex;
    justify-content: space-between;
}
.modal-content {
    margin: 4% auto;
    padding: 10px 19px;
    border-radius: 10px;
    max-width: 70%;
    min-width: 250px; 
    background: var(--modal-background);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease-out;
    max-height: 86%;
    overflow-y: auto;
}
.modal-content::-webkit-scrollbar {
  /* display: none; */
  width: 0px;
  background: transparent;
}

.small-modal-content {
  width: 25%;       /* yahan aap fixed width rakh sakte ho */
  min-width: 200px; /* optional – bahut chhota na ho */
}

/* Modal Background */
.remark-modal-overlay,
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 995;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* overflow: auto; */
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    

    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.modal-overlay::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
}

/* Close Button */
.modal-close-btn {
    color: #0d4d46;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    margin: 0px 0px;
    transition: transform 0.3s ease;
}

.modal-close-btn:hover,
.modal-close-btn:focus {
    color: #000;
    text-decoration: none;
    transform: rotate(180deg);
}

.container-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1px 15px;
}
.container {
  flex: 1 1 16%;
  margin-bottom: 7px;
  /* min-width: 200px; */
}

.container label, .container1 label {
  display: block;
  font-weight: bold;
  margin-bottom: 1px;
  font-size: 12px;
}

.check-box {
  display: inline-flex;
  align-items: center;
  font-weight: normal;
  margin-bottom: 0;
  font-size: 14px;
  gap: 6px;
  cursor: pointer;
}


.container select, .container1 select {
  width: 100%;
  padding: 5px 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.container input {
  width: 100%;
  padding: 7px 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
    width: 100%;
    padding: 8px;
    margin: 5px 0 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}


.action-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.icon-label {
    font-size: 11px;
    color: #555;
    margin-top: 2px;
    font-weight: 500;
}

.action-separator {
    height: 1px;
    width: 60%;
    background-color: #ccc;
    margin: 6px 0;
    border-radius: 1px;
    opacity: 0.5;
}
.hidden {
  display: none;
}
.container1 {
  margin-bottom: 10px;
}
.star-rating i {
    font-size: 20px;
    color: #ccc;
    cursor: pointer;
    transition: 0.3s;
}
.star-rating i.active {
    color: gold;
}
.star-rating i:hover {
    transform: scale(1.2);
}