.assign-modal .modal-content {
  border-radius: 14px;
  padding: 10px;
  font-family: "Poppins", sans-serif;
  overflow-x: "hidden";
}

/* ================= TABLE ALIGNMENT FIX ================= */

/* Ensure consistent font */
/* Clean, natural table layout */
.assign-modal table {
  width: 100%;
  font-family: "Poppins", sans-serif;
  border-collapse: collapse;
}

/* Header + body alignment */


/* Checkbox column */
.assign-modal thead th:first-child,
.assign-modal tbody td:first-child {
  width: 60px;
  text-align: center;
}

/* Actions column (icon only) */
.assign-modal thead th:last-child,
.assign-modal tbody td:last-child {
  width: 60px;
  text-align: center;
}




/* Ensure the modal content takes the full height of the viewport */
.assign-modal .modal-content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 1.75rem auto;
}

/* .assign-modal thead th {
  background-color: #f8f9fa;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #333;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #dee2e6;
  padding: 12px 8px;
} */

/* Allow group column to wrap (prevents overflow) */
.assign-modal thead th:nth-child(3),
.assign-modal tbody td:nth-child(3) {
  max-width: 250px;
}


/* Make the body scrollable while header/footer stay fixed */
.assign-modal .modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
}

/* Adjust table sizing now that you have more space */
.assign-modal .table-responsive {
  width: 100% !important;
  overflow-x: hidden;
  border-radius: 8px;
}

.assign-modal thead th {
  background-color: #f8f9fa;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #333;
  padding: 12px 1px;
}

.assign-modal tbody td {
  font-size: 14px;
  padding: 12px 1px;
}

/* Force checkbox color to black / grey */
.assign-modal input[type="checkbox"] {
  accent-color: #666; /* dark grey */
}


.assign-modal input[type="checkbox"].grey {
  accent-color: #666;
}


.room-info {
  background: #fff9ef;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  height: 120px;
}

.tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.tab-buttons button {
  padding: 6px 16px;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
}

.tab-buttons button.active {
  background: #000;
  color: #fff;
}

.assign-list {
  max-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.assign-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff9ef;
  border-radius: 12px;
  padding: 12px;
}

.assign-card input[type="checkbox"] {
  margin-top: 4px;
}

.assign-card .muted {
  font-size: 13px;
  color: #6b6b6b;
}

.assign-modal input[type="text"]{
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #AFAFAF;
  color: #555454;
}

.assign-modal input[type="number"] {
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #AFAFAF;
  color: #555454;
  width: 130px;
}

.room-info-card {
  background: #fffaf0;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.room-info-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.room-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.room-info-dates {
  color: #333;
}

.room-info-available {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
  font-weight: 500;
}

/* Apply Poppins everywhere in Assign Rooms modal */
.assign-modal,
.assign-modal * {
  font-family: "Poppins", sans-serif;
}

/* Hotel display styling */
.hotel-assigned {
  line-height: 1.2;
}

.hotel-label {
  font-size: 11px;
  color: #6c757d;
  font-weight: 500;
}

.hotel-name {
  font-size: 13px;
  font-weight: 600;
  color: #000;
}
