@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600&display=swap");

:root {
  --admin-primary: #005c5c;
  --heading-font: #212121;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
}

.login-page {
  min-height: 100vh;
  width: 100%;
}

.login-left {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.login-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  position: absolute;
  top: 32px;
  left: 32px;
  font-family: "Poppins";
  font-size: 36px;
  font-weight: 600;
  color: var(--heading-font);
}

.login-right {
  height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
}

.login-box {
  width: 100%;
  max-width: 420px;
}

.welcome-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  text-align: center;
}

.welcome-desc {
  font-size: 14px;
  color: #777b85;
  line-height: 22px;
  text-align: center;
  margin-bottom: 18px;
}

.input-label {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.custom-input {
  height: 44px;
  font-size: 14px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.custom-input::placeholder {
  color: #a3a3a3;
}

.custom-input:focus {
  border-color: var(--admin-primary);
  box-shadow: none;
}

.forgot-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--admin-primary);
  text-decoration: none;
}

.confirm-btn {
  background: #f2f2f2;
  color: #777b85;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 75px;
  border-radius: 16px;
  border: none;
  display: flex;
  justify-self: center;
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.auth-divider span {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #9e9e9e;
}

.google-btn {
  height: 44px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
}

.google-btn img {
  width: 18px;
}

.signup-text {
  font-size: 14px;
  font-weight: 500;
  color: #9e9e9e;
}

.signup-link {
  font-weight: 600;
  color: var(--admin-primary);
  text-decoration: none;
}

.role-btn {
  background: var(--admin-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
}

/* Signup agent  page  */
.signup-wrapper {
  padding: 32px 60px;
}

/* Back link */
.back-link {
  color: #111827;
  text-decoration: none;
}

/* Select arrow */
.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  padding-right: 44px;
  /* arrow space */
}

.select-wrap i {
  position: absolute;
  right: 16px;
  top: 70%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #000;
  pointer-events: none;
}

/* Column padding */
.cs-left,
.cs-right {
  padding: 10px 30px;
}

.cs-f-width {
  padding-right: 20px;
}

/* Date picker icon wrapper */
.input-icon-wrap {
  position: relative;
}

.input-icon-wrap i {
  position: absolute;
  right: 16px;
  top: 70%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #005c5c;
  pointer-events: none;
}

/* Date icon (legacy) */
.date-icon {
  position: absolute;
  right: 16px;
  top: 60%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #005c5c;
  pointer-events: none;
}

/* Green radio */
input[type="radio"]:checked {
  accent-color: #005c5c;
}

/* Upload layout - button separate from input */
.upload-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.upload-row input[type="text"],
.upload-row input.form-control {
  flex: 1;
}

.upload-row .upload-btn {
  background: var(--admin-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-row .upload-btn input[type="file"] {
  display: none;
}

.cs-full {
  padding: 0 30px;
}

.cs-icon {
  padding-right: 30px;
}

.booking-modal-title {
  color: #111827;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 600;
}

.booking-info-group {
  margin-bottom: 1px;
  /* increased spacing */
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.booking-info-label {
  color: #6c6c6c;
  font-size: 13px;
  font-family: Inter;
  font-weight: 500;
  display: block;
  white-space: nowrap;
}

.booking-info-value {
  color: #212121;
  font-size: 13px;
  font-family: Inter;
  font-weight: 600;
}

.booking-form-control {
  border: 1px solid #e5e7eb;
  padding: 6px 12px;
  font-size: 14px;
  width: 180px;
  /* Limit width */
  outline: none;
  transition: all 0.2s;
  border-radius: 50px;
  height: 34px;
}

.booking-form-control:focus {
  border-color: #005c5c;
  box-shadow: 0 0 0 2px rgba(0, 92, 92, 0.1);
}

.modal-footer-custom {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  /* Match modal body padding */
  /* border-top: 1px solid #F3F4F6; */
  background: #fff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  width: 100%;
}

.modal-footer-custom1 {
  padding: 24px 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 20px;
}

.modal-action-btn {
  background-color: #005c5c;
  /* Slightly Darker Teal */
  color: #fefefe;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.3s;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}

.modal-action-btn:hover {
  background-color: #003a3a;
  color: white;
}

.modal-body {
  padding: 20px 20px 20px 20px;
  /* Align with footer */
}

/* .booking-info-group input {
    height: 38px;
} */

.amendment-input-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.amendment-label {
  color: #6c6c6c;
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
  white-space: nowrap;
  /* min-width: 100px;  */
  text-align: start;
}

.amendment-input {
  background: rgba(243, 244, 244, 1);
  border: 1px solid rgba(229, 231, 235, 1);
  border-radius: 8px;
  padding: 5px 3px 5px 5px;
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  width: 200px;
  outline: none;
}

.amendment-input-1 {
  width: 100%;
}

.amendment-submit-btn {
  background-color: #005c5c;
  color: #fefefe;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-left: auto;
  /* Push to right */
  display: block;
}

/* Payment Modal Styles */
.payment-detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.payment-label {
  color: #6c6c6c;
  font-size: 15px;
  font-family: Inter;
  font-weight: 500;
}

.payment-value {
  color: #6c6c6c;
  font-size: 15px;
  font-family: Inter;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0.32px;
}

.payment-divider {
  border-top: 1px solid #e5e7eb;
  margin: 16px 0;
}

.payment-total-label {
  color: #212121;
  font-size: 15px;
  font-family: Inter;
  font-weight: 600;
}

.payment-total-value {
  color: #212121;
  font-size: 16px;
  font-family: Inter;
  font-weight: 600;
}

.payment-status-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.payment-select {
  padding: 10px 40px 10px 16px;
  border-radius: 8px;
  background: #f3f4f6;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  outline: none;
  cursor: pointer;
  min-width: 120px;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23374151'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.payment-select.paid {
  background-color: #dcfce7;
  color: #166534;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23166534'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
}

.payment-select.refunded {
  background-color: #fee2e2;
  color: #991b1b;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23991B1B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
}

.status-paid-badge {
  background-color: #dcfce7;
  color: #166534;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.footer-btn-wrapper {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  width: 100%;
}

.download-btn {
  background-color: #005c5c;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* Booking Status Modal Styles */
.remarks-textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  color: #111827;
  outline: none;
  resize: none;
  min-height: 100px;
  margin-top: 8px;
}

.remarks-textarea::placeholder {
  color: #9ca3af;
}

.booking-status-select {
  padding: 10px 40px 10px 16px;
  border-radius: 8px;
  /* Rounded pill shape */
  font-size: 14px;
  /* Smaller text */
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  background-color: #f3f4f6;
  /* Default gray bg */
  color: #111827;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23374151'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.booking-status-select.confirmed {
  background-color: #dcfce7;
  color: #166534;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23166534'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
}

.booking-status-select.cancelled {
  background-color: #fee2e2;
  color: #991b1b;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23991B1B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
}

/* Confirmation Pending Modal Styles */
.add-email-link {
  color: #005c5c;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
}

.email-section-wrapper {
  margin-bottom: 24px;
  /* border-bottom: 1px solid #f0f0f0;  */
  padding-bottom: 4px;
}

.email-label {
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
  white-space: nowrap;
  width: 100px;
  color: #6c6c6c;
}

.email-value-text {
  color: #111827;
  font-size: 14px;
  font-weight: 600;
}

.email-input {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  /* Pill shape matched */
  padding: 8px 16px;
  font-size: 14px;
  color: #111827;
  outline: none;
  width: 100%;
  /* Use full available width */
  background: #fff;
}

.comment-input {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  /* Pill shape */
  padding: 8px 16px;
  width: 100%;
  font-size: 14px;
  color: #111827;
  outline: none;
  background: #fff;
  margin-left: 8px;
  /* Adjustment for alignment if needed? flex? */
}

/* Layout for comment row */
.comment-row {
  display: flex;
  align-items: center;
  margin-top: 12px;
}

.comment-label {
  color: #6c6c6c;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  margin-right: 12px;
}

.send-email-btn {
  background-color: #005c5c;
  color: white;
  border: none;
  padding: 10px 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* Status Select Styling */
.status-select {
  padding: 6px 6px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  border: none;
  outline: none;
  appearance: none;
  /* Keep native arrow hidden */
  -moz-appearance: none;
  -webkit-appearance: none;
  background: transparent;
  /* No icon */
  width: 100px;
  /* Reduced width as no icon */
  text-align: center;
  transition: all 0.3s;
}

.status-select:focus {
  outline: none;
  box-shadow: none;
}

.status-pending {
  background-color: #fff3cd;
  color: #856404;
}

.status-confirmed {
  background-color: #d4edda;
  color: #155724;
}

.status-reject {
  background-color: #f8d7da;
  color: #721c24;
}

/* Booking Form Styling */
.booking-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.back-btn {
  color: #333;
}

.booking-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #111827;
}

/* Stepper */
.stepper-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.step-label {
  font-weight: 500;
  font-size: 15px;
  color: #111827;
}

.step-line {
  height: 2px;
  width: 50px;
  background-color: #e5e7eb;
  margin: 0 16px;
  transition: all 0.3s;
}

/* Active State */
.step-item.active .step-circle {
  border: 2px solid #005c5c;
  color: #005c5c;
  background: #fff;
  box-shadow: none;
}

.step-item.active .step-label {
  color: black;
  font-size: 12px;
  font-family: Inter;
  font-weight: 500;
}

/* Completed State */
.step-item.completed .step-circle {
  background: #005c5c;
  color: #fff;
  border: none;
}

/* Pending State */
.step-item.pending .step-circle {
  background: #9ca3af;
  /* Grey */
  color: #fff;
  border: none;
}

/* ========================================
   TRACKING PAGE STYLES
   ======================================== */
.tracking-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 0;
  list-style: none;
  border-bottom: none !important;
}

.tracking-tabs .nav-link {
  background-color: #ffffff;
  color: #4b5563;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
}

.tracking-tabs .nav-link:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
}

.tracking-tabs .nav-link.active {
  background-color: #f0fdfa;
  /* Teal-50 */
  color: #005c5c;
  /* From user specs */
  border-color: #005c5c;
  font-family: Inter;
  font-weight: 600;
  line-height: 21px;
}

/* Tracking Table */
.tracking-table {
  width: 100%;
  /* Full Width */
}

.tracking-table thead th {
  background-color: #f9fafb;
  /* Gray-50 */
  color: #6b7280;
  /* From user specs */
  font-family: Inter;
  font-weight: 500;
  /* From user specs */
  font-size: 13px;
  line-height: 21px;
  padding: 14px 24px;
  border-bottom: none;
  text-transform: capitalize;
  white-space: nowrap;
  /* Prevent wrapping */
  text-align: center;
}

/* Specific alignments */
.tracking-table thead th:nth-child(1),
.tracking-table tbody td:nth-child(1) {
  width: 15%;
  text-align: center;
}

.tracking-table thead th:nth-child(2),
.tracking-table tbody td:nth-child(2) {
  width: 10%;
  text-align: center;
}

.tracking-table thead th:nth-child(3),
.tracking-table tbody td:nth-child(3) {
  width: 10%;
  text-align: center;
}

.tracking-table thead th:nth-child(4),
.tracking-table tbody td:nth-child(4) {
  width: 10%;
  text-align: center;
}

/* IP */
.tracking-table thead th:nth-child(5),
.tracking-table tbody td:nth-child(5) {
  width: 30%;
  text-align: center;
}

/* Request JSON - Left aligned */
.tracking-table thead th:nth-child(6),
.tracking-table tbody td:nth-child(6) {
  width: 15%;
  text-align: center;
}

/* Status */
.tracking-table thead th:nth-child(7),
.tracking-table tbody td:nth-child(7) {
  width: 10%;
  text-align: center;
}

/* More Info */

.tracking-table tbody td {
  padding: 24px;
  vertical-align: middle;
  color: #212121;
  /* From user specs */
  font-family: Inter;
  font-weight: 500;
  /* From user specs */
  font-size: 14px;
  line-height: 20px;
  border-bottom: 1px solid #f3f4f6;
  background-color: white;
  white-space: nowrap;
  /* Prevent wrapping for all data cells */
}

.tracking-table .info-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Align to start */
  gap: 4px;
}

.tracking-table .info-row {
  font-size: 13px;
  line-height: 1.5;
}

.tracking-table .info-label {
  font-weight: 700;
  color: #374151;
  margin-right: 4px;
}

.tracking-table .info-value {
  color: #6b7280;
}

/* Success Badge */
.tracking-status-badge {
  background-color: #ecfdf5;
  color: #1e8e1b;
  /* From user specs */
  font-family: Inter;
  font-weight: 600;
  /* From user specs */
  font-size: 14px;
  line-height: 21px;
  padding: 6px 16px;
  border-radius: 6px;
  border: 1px solid #d1fae5;
  display: inline-block;
  word-wrap: break-word;
}

/* Info Icon */
.tracking-info-icon {
  width: 20px !important;
  height: 20px !important;
  color: #111827;
  cursor: pointer;
  vertical-align: middle;
}

.step-line.completed {
  background-color: #005c5c;
}

/* Form Sections */
.form-section {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 18px;
  overflow: visible;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  /* border-bottom: 1px solid #e5e7eb; */
}

.section-title {
  color: black;
  font-size: 18px;
  font-family: Inter;
  font-weight: 600;
  line-height: 27px;
  margin: 0;
}

.upload-area {
  border: 2px dashed #e5e7eb;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  background: transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.upload-icon {
  font-size: 24px;
  color: #212121;
  margin-bottom: 12px;
}

.upload-text {
  color: #212121;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 500;
  line-height: 24px;
}

.upload-link {
  color: #005c5c;
  font-weight: 600;
  text-decoration: underline;
}

.form-label {
  color: #111827;
  font-size: 13px;
  font-family: Inter;
  font-weight: 400;
  margin-bottom: 8px;
}

.form-control,
.form-select {
  border-color: #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  padding: 10px 14px;
  color: #374151;
}

.form-control::placeholder {
  color: #9ca3af;
}

.form-control:focus,
.form-select:focus {
  border-color: #005c5c;
  box-shadow: 0 0 0 4px rgba(0, 92, 92, 0.05);
}

.radio-group {
  display: flex;
  gap: 24px;
  height: 100%;
  align-items: center;
  margin-top: -15px;
}

.form-check-input:checked {
  background-color: #005c5c;
  border-color: #005c5c;
}

.booking-footer {
  display: flex;
  align-items: center;
  padding-top: 24px;
  margin-top: 32px;
  gap: 16px;
  border-right: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(17, 24, 39, 0.05);
  padding: 15px;
  border-radius: 12px;
}

.step-item.completed .step-circle i {
  color: #fff !important;
  font-size: 16px;
  display: block;
  font-weight: 900;
  /* Required for fa-solid */
}

.next-btn {
  background: #005c5c;
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: auto;
}

.next-btn:hover {
  background: #004545;
}

.prev-btn {
  background: white;
  color: #374151;
  padding: 12px 32px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.prev-btn:hover {
  background: #f3f4f6;
}

.hotel-mt {
  padding-top: 5px;
}

.section-header-One {
  margin-bottom: 0;
}

/* Payment Status Modal Styles */

.payment-modal-title {
  font-size: 18px;
}

.payment-status-label,
.transaction-label {
  font-size: 14px;
}

.transaction-input {
  border-radius: 8px;
  border-color: #e0e0e0;
  padding: 10px;
  font-size: 14px;
  background-color: #fafafa;
}

.payment-submit-btn {
  background-color: #005c5c;
  color: white;
  border-radius: 8px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 500;
  border: none;
}

.room-title {
  color: black;
  font-size: 16px;
  font-family: Inter;
  font-weight: 600;
  line-height: 27px;
}

.agent-corp-mb {
  margin-bottom: -10px !important;
}

.gst-tax-note {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

/* Review Step Styles */
.review-hotel-img {
  object-fit: cover;
  border-radius: 12px;
  height: 175px;
}

.p-4 {
  padding: 1rem !important;
}

.review-hotel-name {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
}

.review-info-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-item {
  font-size: 14px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.review-item-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.review-label {
  color: #6c6c6c;
  font-size: 13px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.review-label-nowrap,
.review-value-nowrap {
  white-space: nowrap;
}

.review-value {
  color: #212121;
  font-size: 13px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.review-section-header {
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.review-section-title {
  font-size: 15px;
  font-weight: 600;
  color: black;
  margin: 0;
  font-family: "Inter", sans-serif;
  margin-bottom: 6px !important;
}

.review-content {
  padding: 24px;
}

.review-text {
  color: #6c6c6c;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  font-family: "Inter", sans-serif;
}

/* Payment Step Styles */
.payment-section {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.payment-instruction {
  font-size: 17px;
  font-weight: 600;
  color: black;
  text-align: center;
  margin-bottom: 30px;
  font-family: "Inter", sans-serif;
}

.payment-ref-container {
  width: 100%;
  max-width: 500px;
}

.payment-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
}

.payment-input-group {
  display: flex;
  gap: 16px;
  align-items: center;
}

.payment-input {
  flex: 1;
  height: 44px;
  padding: 10px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  color: #4b5563;
  background-color: #ffffff;
  /* White background as per typical input */
  outline: none;
  font-family: "Inter", sans-serif;
}

.payment-copy-btn {
  background-color: var(--admin-primary);
  color: #ffffff;
  border: none;
  height: 44px;
  padding: 0 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
  font-family: "Inter", sans-serif;
}

.payment-copy-btn:hover {
  opacity: 0.9;
}

/* Custom Scrollbar for Modal Body */
.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
  width: 4px;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Status Badges */
.badge-status {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 400;
  display: inline-block;
  cursor: pointer;
}

.badge-confirmed,
.badge-paid {
  background-color: #e8f5e9;
  color: #1b5e20;
}

.badge-pending {
  background-color: #fff3e0;
  color: #e65100;
}

.data-table-serch thead {
  color: #777b85;
  font-size: 16px !important;
  font-family: Inter;
  font-weight: 600;
  line-height: 21px;
}

/* New Request Page Styles (moved from inline) */
.request-action-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  width: 90px;
  transition: opacity 0.3s;
}

.request-action-btn:hover {
  opacity: 0.9;
}

.btn-decline {
  background-color: #fee2e2;
  /* Lighter red for modern look */
  color: #991b1b;
  margin-right: 8px;
}

.btn-approve {
  background-color: #dcfce7;
  /* Lighter green for modern look */
  color: #166534;
}

/* Specific styling to match the image precisely */
.data-table thead th {
  font-weight: 500;
  color: #6b7280;
  font-size: 13px;
  /* Slightly smaller header text often */
  text-transform: capitalize;
  /* Ensure normal case or capitalize */
  border-bottom: 1px solid #f3f4f6;
  padding: 10px 14px;
  text-align: center;
  /* More padding */
}

.data-table tbody td {
  vertical-align: middle;
  font-weight: 400;
  padding: 7px 14px;
  /* More padding */
  border-bottom: 1px solid #f3f4f6;
  color: #6b7280;
  text-align: center;
}

/* First column (Hotel Name) bold */
.data-table tbody td:first-child {
  font-weight: 400;
  color: #6b7280;
}

/* Specific styling to match the image precisely */
/* Specific styling to match the image precisely */
/* Hover effect for all table rows */
.data-table-new-request {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.data-table-new-request tbody tr {
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.data-table-new-request tbody tr:hover td {
  background-color: rgba(119, 123, 133, 0.1) !important;
}

.data-table-new-request tbody tr:hover td:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-left: 10px solid transparent;
  /* Simulate margin */
  background-clip: padding-box;
}

.data-table-new-request tbody tr:hover td:last-child {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-right: 10px solid transparent;
  /* Simulate margin */
  background-clip: padding-box;
}

/* Refine table appearance to match image */
/* Refine table appearance to match image */
.data-table-new-request {
  border-collapse: separate;
  border-spacing: 0 12px;
  /* Adds space between rows to create the card look */
  width: 100%;
}

.data-table-new-request thead th {
  font-weight: 500;
  color: #6b7280;
  /* Lighter grey for headers */
  font-size: 13px;
  border-bottom: none;
  /* No border for headers in this specific look */
  padding: 14px 14px;
  font-family: Inter;
}

.data-table-new-request tbody td {
  vertical-align: middle;
  font-weight: 400;
  padding: 10px 15px;
  /* Taller rows */
  border-bottom: none;
  /* Remove borders to look like the clean list image */
  color: #6b7280;
  font-size: 13px;
  font-family: Inter;
}

/* Make the first cell (Hotel Name) fully clickable */
.data-table-new-request tbody td:first-child {
  padding: 0;
}

.data-table-new-request tbody td:first-child a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0px 24px;
  /* Match the original cell padding */
  text-decoration: none;
  color: #6b7280;
  display: flex;
  align-items: center;
}

/* Make first cell content (link) fill the entire cell */
.data-table-new-request tbody td:first-child {
  padding: 0;
}

/* Button refinements */
.request-action-btn {
  padding: 6px 18px;
  /* Slightly wider */
  border-radius: 8px;
  font-weight: 400;
  font-size: 13px;
  font-family: Inter;
  border: none;
  cursor: pointer;
  width: auto;
  /* Let text define width, or fixed? Image looks fixed-ish but maybe auto */
  min-width: 80px;
}

.btn-decline {
  background-color: #fee2e2;
  color: #991b1b;
}

.btn-approve {
  background-color: #dcfce7;
  color: #166534;
}

/* Decline Modal Styling */
.decline-modal-content {
  border-radius: 12px;
  border: none;
  padding: 10px;
}

.decline-modal-title {
  font-family: Poppins;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.decline-modal-close {
  font-size: 14px;
  opacity: 0.5;
}

.decline-modal-label {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  line-height: 21px;
  display: block;
  margin-bottom: 8px;
  margin-top: 20px;
  display: block;
}

.decline-modal-textarea {
  background-color: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  color: #6b7280;
  resize: none;
}

.decline-modal-btn-cancel {
  border: 1px solid #005f5f;
  color: #005f5f;
  border-radius: 8px;
  padding: 6px 20px;
  font-weight: 600;
  font-size: 14px;
  background: white;
}

.decline-modal-btn-cancel:hover {
  background-color: #f0fdfd;
  color: #004d4d;
}

.decline-modal-btn-confirm {
  background-color: #005f5f;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 14px;
}

.decline-modal-btn-confirm:hover {
  background-color: #004d4d;
  color: white;
}

/* Hotel Details Tabs Styling */
.custom-tab-link {
  border: none !important;
  background: transparent !important;
  color: #212121 !important;
  /* Gray-500 */
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 21px !important;
  font-family: "Inter", sans-serif !important;
  padding: 12px 16px !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  margin-right: 20px !important;
}

.custom-tab-link.active {
  color: #005c5c !important;
  border-bottom: 3px solid #005c5c !important;
  font-weight: 600 !important;
}

.custom-tab-link:hover {
  color: #005c5c !important;
}

.details-tabs-container {
  border-bottom: 1px solid #e5e7eb;
  padding-left: 20px;
  padding-right: 20px;
}

/* Section Titles */
.section-title-request {
  color: black;
  font-family: "Inter", sans-serif;
  /* Image font looks more like Inter/Roboto than Poppins for these headers */
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  margin-top: 10px;
}

/* Detail Key-Value Styling */
.detail-key {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #212121;
  /* Darker black for keys */
  font-size: 14px;
  margin-right: 4px;
}

.detail-value {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #6c6c6c;
  /* Gray text for values */
  font-size: 14px;
}

.detail-link {
  color: #005c5c;
  text-decoration: underline;
  font-weight: 500;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}

.info-label-small {
  color: #6c6c6c;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.info-value-small {
  color: #212121;
  font-size: 14px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

/* Hotel Details Specific Typography & Utilities */
.hotel-header-title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #111827;
  margin: 0;
  font-weight: 700;
}

.hotel-name-large {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #111827;
  font-weight: 700;
}

.hotel-star-rating {
  color: #f59e0b;
  font-size: 14px;
}

.rating-text {
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
}

.location-text {
  color: #6b7280;
  font-family: "Inter", sans-serif;
}

.location-address {
  color: #6c6c6c;
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
}

.location-icon {
  font-size: 13px;
}

.description-text {
  color: #6c6c6c;
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
  line-height: 21px;
  margin-bottom: -10px !important;
}

.read-more-link {
  color: #005f5f;
  font-weight: 700;
  text-decoration: none;
}

.hotel-detail-img {
  max-height: 240px;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-separator {
  border-top: 1px solid #e5e7eb;
  margin: 24px 0;
}

.details-tabs-container .nav-item {
  margin-bottom: 0;
}

/* Amenities Tab Styling */
.amenities-category-title {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #212121;
  margin-bottom: 12px;
}

.amenity-item {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #6c6c6c;
  margin-bottom: -2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.amenity-icon {
  font-size: 14px;
  color: #6c6c6c;
}

.new-hotel-request-tabs .nav {
  white-space: nowrap;
  overflow: scroll;
  flex-wrap: nowrap;
  scrollbar-width: none;
  gap: 10px;
}

/* Room Details Tab Specific Styles */
.room-sub-tabs {
  border-bottom: none !important;
  gap: 12px;
  margin-bottom: 24px;
}

.room-sub-tab-link {
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  color: #6c6c6c !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
  background: white !important;
  font-size: 14px !important;
  font-family: "Inter", sans-serif !important;
}

.room-sub-tab-link.active {
  border-color: #005c5c !important;
  color: #005c5c !important;
  background-color: rgba(0, 92.19, 92.19, 0.1) !important;
  border-width: 1px !important;
  font-weight: 600 !important;
}

.room-item-container {
  margin-bottom: 32px;
}

.room-item-img {
  width: 100%;
  height: 175px;
  /* Slightly reduced height to match aspect ratio better */
  object-fit: cover;
  border-radius: 8px;
}

.room-item-title {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #111827;
  font-weight: 600;
  margin-bottom: 5px;
}

.room-info-row {
  margin-bottom: -2px;
  /* Tighter spacing */
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}

.room-info-label {
  color: #212121;
  font-weight: 600;
  margin-right: 4px;
  font-size: 13px;
}

.room-info-value {
  color: #6c6c6c;
  font-weight: 400;
  font-size: 13px;
}

.room-description {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #6c6c6c;
  line-height: 21px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 400;
}

.meal-plans-section-title {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #111827;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 24px;
}

.meal-plan-name {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  /* Matched to image size */
  color: #111827;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 21px;
}

.meal-plan-text {
  font-family: "Inter", sans-serif;
  color: #111827;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  /* Reduced spacing */
}

.meal-plan-label {
  color: #212121;
  font-weight: 600;
  font-size: 14px;
  margin-right: 8px;
}

.meal-plan-value {
  color: #6c6c6c;
  font-weight: 500;
  font-size: 14px;
  font-family: Inter;
}

.meal-plan-mt {
  margin-top: 30px;
}

/* Photos & Videos Tab Styles */
.gallery-main-title {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: black;
  margin-bottom: 2px;
  margin-top: 24px;
}

.gallery-main-title:first-child {
  margin-top: 0;
}

.gallery-sub-title {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 15px;
  margin-top: 12px;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-thumb {
  width: 120px;
  /* Matching the small thumbnail look in the image */
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-thumb-video {
  width: 300px;
  /* Matching the small thumbnail look in the image */
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px !important;
}

.gallery-item-video {
  margin-bottom: 40px !important;
  position: relative;
}

.delete-icon-video {
  right: -8px !important;
  top: -12px !important;
}

/* Policies Tab Styles */
.policy-section-title {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: black;
  line-height: 24px;
  margin-bottom: 8px;
  margin-top: 10px;
}

.policy-section-title:first-child {
  margin-top: 0;
}

.policy-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #6c6c6c;
  font-weight: 500;
}

.policy-icon {
  margin-right: 12px;
  margin-top: 3px;
  color: #6c6c6c;
  font-size: 12px;
}

.policy-separator {
  border-bottom: 1px solid #e5e7eb;
  margin: 10px 0;
}

.custom-policy-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #6c6c6c;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 8px;
}

/* Finance Tab Styles */
.finance-section-title {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: black;
  margin-bottom: 12px;
  margin-top: 24px;
}

.finance-section-title:first-child {
  margin-top: 0;
}

.finance-row {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.finance-key {
  font-weight: 600;
  color: #212121;
}

.finance-value {
  color: #6c6c6c;
  margin-left: 10px;
  font-weight: 500;
}

.finance-link {
  color: #005c5c;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
  margin-left: 10px;
}

.finance-separator {
  border-bottom: 1px solid #e0e0e0;
  margin: 24px 0;
}

/* Extra Net / Inventory Styles */
.extra-net-container {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.extra-net-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.extra-net-title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

/* Tabs */
.extra-net-tabs {
  border-bottom: 1px solid transparent;
  margin-bottom: 20px;
}

.extra-net-tabs .nav-link {
  color: #4b5563;
  font-weight: 500;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 24px;
  font-size: 14px;
  background: transparent;
}

.extra-net-tabs .nav-link:hover {
  color: #005c5c;
  border-color: #005c5c;
  background: transparent;
}

.extra-net-tabs .nav-link.active {
  color: #005c5c;
  font-weight: 600;
  border-color: #005c5c;
  background-color: transparent;
}

.extra-net-tabs-profile .nav-link {
  color: #4b5563;
  font-weight: 500;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 6px 24px;
  font-size: 14px;
  background: transparent;
}

.extra-net-tabs-profile .nav-link:hover {
  color: rgb(17, 24, 39);
  border-color: transparent;
  background: #d4e2e1;
  font-weight: 600;
}

.extra-net-tabs-profile .nav-link.active {
  color: #005c5c;
  font-weight: 600;
  border-color: transparent;
  background-color: transparent;
}

.extra-net-tabs .nav-link1 {
  color: #4b5563;
  font-weight: 500;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 24px;
  font-size: 14px;
  background: transparent;
}

.extra-net-tabs .nav-link1.active {
  color: #000;
  border: 1px solid #005c5c !important;
  font-weight: 600;
  border-radius: 8px;
  background-color: transparent !important;
}

.extra-net-tabs .nav-link2 {
  color: #4b5563;
  font-weight: 500;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 8px 24px;
  font-size: 14px;
  background: transparent;
}

.extra-net-tabs .nav-link2.active {
  color: #005c5c;
  border: 1px solid #005c5c !important;
  font-weight: 600;
  border-radius: 8px;
  background-color: rgba(0, 92.19, 92.19, 0.1) !important;
}

.extra-net-tabs .nav-item {
  margin-bottom: 0;
}

/* Filters */
.inventory-filters {
  background-color: #fff;
  margin-bottom: 24px;
}

.inventory-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 5px;
  display: block;
}

.inventory-flex-container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-item {
  flex: 1;
  min-width: 140px;
}

.filter-item.item-large {
  flex: 1.2;
}

.filter-actions {
  display: flex;
  gap: 10px;
}

.extra-net-tabs .nav {
  white-space: nowrap;
  overflow: hidden;
  flex-wrap: nowrap;
  overflow-x: scroll;
  scrollbar-width: none;
}

/* Ensure buttons take their natural width or specific width in this layout */
.btn-inventory-apply,
.btn-inventory-download {
  width: auto;
  min-width: 100px;
  padding: 0 24px;
}

/* Inventory Control Inputs */
.inventory-control {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  /* High radius for pill shape */
  padding: 8px 16px;
  font-size: 14px;
  color: #9ca3af;
  /* Lighter text color for placeholder feel */
  background-color: #fff;
  height: 34px;
  appearance: none;
  -webkit-appearance: none;
}

.inventory-control:focus {
  border-color: #005c5c;
  outline: none;
}

/* Custom position for calendar icon inside input wrapper */
.input-icon-wrapper {
  position: relative;
  width: 100%;
}

.input-icon-wrapper i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #111827;
  /* Dark icon color */
  pointer-events: none;
  font-size: 14px;
}

.btn-inventory-apply {
  background-color: #005c5c;
  color: #fefefe;
  border: none;
  border-radius: 6px;
  /* Slightly rounded, not full pill */
  padding: 8px 16px;
  font-weight: 600;
  font-size: 13px;
  height: 35px;
  width: 100%;
}

.btn-inventory-download {
  background-color: white;
  color: #005c5c;
  border: 1px solid #005c5c;
  border-radius: 6px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 13px;
  height: 35px;
  color: #111827;
  /* Dark icon color */
  font-size: 14px;
  cursor: pointer;
}

.btn-inventory-apply {
  background-color: #005c5c;
  color: #fefefe;
  border: none;
  border-radius: 8px;
  /* Slightly rounded, not full pill */
  padding: 8px 16px;
  font-weight: 600;
  font-size: 13px;
  height: 35px;
  width: 100%;
}

.btn-inventory-download {
  background-color: white;
  color: #005c5c;
  border: 1px solid #005c5c;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 13px;
  height: 35px;
  width: 100%;
}

/* Inventory Table */
.inventory-table-container {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.inventory-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1000px;
}

.inventory-table thead th {
  background-color: #f3f4f4;
  padding: 8px 15px;
  text-align: center;
  font-weight: 500;
  font-size: 13px;
  color: #6b7280;
  border: 1px solid #fff;
  white-space: nowrap;
}

.inventory-table thead th:first-child {
  text-align: center;
  padding-left: 24px;
  min-width: 200px;
  color: #6b7280;
  font-size: 13px;
  font-family: Inter;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.32px;
}

.date-header-day {
  display: block;
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.32px;
  margin-bottom: 0px;
}

.date-header-weekday {
  display: block;
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.32px;
}

/* Table Body */
.inventory-table td {
  border: 1px solid #f3f4f6;
  vertical-align: middle;
  text-align: center;
  padding: 5px 13px;
  white-space: nowrap;
  font-size: 12px;
}

.room-type-cell {
  background-color: #f4f6f8;
  /* Uniform Light Grey */
  padding: 20px 24px;
  border-right: 1px solid #ffffff !important;
  /* White border */
  border-bottom: 1px solid #ffffff !important;
  /* White border */
  width: 250px;
  position: relative;
  vertical-align: middle;
}

.room-type-name {
  color: #6b7280;
  font-size: 12px;
  font-family: Inter;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.32px;
  text-align: center;
  display: block;
}

.room-type-code {
  color: black;
  font-size: 12px;
  font-family: Inter;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.32px;
  text-align: center;
}

.room-edit-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  color: #111827;
  font-size: 12px;
  cursor: pointer;
  margin: 0;
  float: none;
}

.param-label {
  text-align: center;
  font-size: 13px;
  color: #777b85;
  /* Muted text */
  font-weight: 500;
  background-color: #f4f6f8;
  /* Same Light Grey */
  padding: 15px 10px;
  letter-spacing: 0.32px;
  line-height: 20px;
  border-right: 1px solid #e5e7eb;
  /* Keep standard border for right of label? Or white? Image 1 looks like white grid. Let's try standard right, white bottom */
  border-bottom: 1px solid #ffffff !important;
  /* White border */
  border-right: 1px solid #ffffff !important;
  width: 100px;
}

.day-cell {
  padding: 10px;
  text-align: center;
  background-color: #fff;
  min-width: 80px;
}

.inventory-input-wrapper {
  display: flex;
  justify-content: center;
}

.inventory-qty-input {
  width: 60px;
  height: 30px;
  border: 1px solid #d1d5db;
  font-family: Inter;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  color: black;
  font-weight: 500;
}

.inventory-qty-input:focus {
  border-color: #005c5c;
  outline: none;
}

/* Custom Checkbox for Stop Sell */
.stop-sell-checkbox {
  width: 25px;
  height: 25px;
  border: 1px solid #777b854d;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  cursor: pointer;
  background-color: white;
  transition: all 0.2s;
}

.stop-sell-checkbox.checked {
  background-color: #def5f3;
  /* Light Teal bg */
  border-color: #005c5c;
  color: #005c5c;
}

.stop-sell-checkbox i {
  display: none;
  font-size: 14px;
}

.stop-sell-checkbox.checked i {
  display: block;
}

/* Pagination Footer */
.inventory-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

.pagination-group {
  display: flex;
  gap: 16px;
}

.btn-inv-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #005c5c;
  background-color: white;
  color: #005c5c;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-inv-nav:hover {
  background-color: #f0fdfa;
  color: #004a4a;
}

/* Custom Multi-Select Dropdown for Days */
.custom-multi-select {
  position: relative;
  width: 100%;
}

.multi-select-dropdown {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 14px;
  color: #9ca3af;
  background-color: #fff;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}

.multi-select-dropdown span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 20px;
}

.multi-select-dropdown i {
  position: absolute;
  right: 16px;
  font-size: 10px;
  color: #111827;
}

.multi-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-top: 4px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 50;
  display: none;
  /* Hidden by default */
  padding: 8px 0;
}

.multi-select-options.show {
  display: block;
}

.multi-select-option {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.2s;
  font-size: 14px;
  color: #111827;
}

.multi-select-option:hover {
  background-color: #f3f4f6;
}

.multi-select-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  transition: all 0.2s;
}

.multi-select-option.selected .multi-select-checkbox {
  background-color: #f0fdfa;
  /* Light teal bg */
  border-color: #005c5c;
}

.multi-select-option.selected .multi-select-checkbox i {
  display: block;
  color: #005c5c;
  font-size: 10px;
}

.multi-select-checkbox i {
  display: none;
}

.multi-select-text {
  color: black;
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
  line-height: 20px;
}

.market-manager-card {
  background: #f9fafb;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #eee;
  height: fit-content;
}

.manager-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 25px;
}

.manager-info p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}

.manager-info strong {
  color: #333;
  width: fit-content;
  display: inline-block;
  font-weight: 600;
}

.status-card {
  background: #f9fafb;
  border-radius: 8px;
  padding: 45px 10px;
  text-align: center;
  border: 1px solid #eee;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.status-value {
  font-size: 30px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 5px;
}

.status-label {
  color: #718096;
  font-size: 13px;
}

.dashboard-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.dashboard-section-title1 {
  font-size: 16px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-section-title i {
  margin-right: 12px;
  font-size: 18px;
}

.data-table-box {
  background: white;
  border-radius: 8px;
  border: 1px solid #eee;
  overflow: hidden;
}

.table-bg-light {
  background-color: #f9fafb !important;
}

.custom-thead th {
  background-color: #f9fafb !important;
  color: #333;
  font-weight: 600;
  font-size: 13px;
  border-bottom: 1px solid #eee;
  padding: 12px 15px;
}

.stat-box {
  background: #f9fafb;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #eee;
  text-align: center;
  height: calc(100% - 35px);
  /* Adjusted for title above */
}

.stat-box-title {
  color: #1a202c;
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  margin-bottom: 12px;
  padding-left: 2px;
}

.stat-box-value {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1a202c;
}

.stat-box-trend {
  font-size: 13px;
  color: #718096;
  margin-bottom: 20px;
}

.btn-stat-action {
  border: 1px solid #e2e8f0;
  background: white;
  color: #4a5568;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  padding: 8px 12px;
  width: 100%;
  transition: all 0.2s;
}

.btn-stat-action:hover {
  background: #f8fafc;
  border-color: #cbd5e0;
}

.btn-competitor-fill {
  background-color: #004d4d;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-competitor-fill:hover {
  background-color: #003a3a;
}

.btn-competitor-outline {
  background-color: transparent;
  color: #005c5c;
  border: 1.5px solid #005c5c;
  padding: 7px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-competitor-outlines {
  background-color: transparent;
  color: #005c5c;
  border: 1.5px solid #005c5c;
  padding: 9px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.empty-state {
  padding: 60px 0;
  text-align: center;
  color: #718096;
  font-size: 14px;
}

/* Room Page Styles */
.room-page-total-header {
  color: black;
  font-size: 16px;
  font-family: Inter;
  font-weight: 600;
  line-height: 27px;
  word-wrap: break-word;
}

.room-summary-name {
  color: #111827;
  font-size: 14px;
  font-family: Inter;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0.32px;
  word-wrap: break-word;
}

.room-status-badge {
  border-radius: 8px !important;
  padding: 3px 16px !important;
  font-size: 13px !important;
  font-family: Inter;
  font-weight: 500 !important;
  word-wrap: break-word;
}

.room-status-badge.status-active {
  color: #1e8e1b !important;
  background-color: #dcfce7 !important;
  /* Light green bg matching typical success-subtle */
}

.room-status-badge.status-inactive {
  color: #8e1b1b !important;
  background-color: #fee2e2 !important;
  /* Light red bg matching typical danger-subtle */
}

.room-input-label {
  color: #111827;
  font-size: 16px;
  font-family: Inter;
  font-weight: 600;
  word-wrap: break-word;
  margin-bottom: 8px;
}

.room-radio-label {
  color: #424242;
  font-size: 14px;
  font-family: Inter;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
  padding-left: 2px;
}

/* Custom Input Styling */
.room-custom-input {
  border: 1px solid #e5e7eb;
  border-radius: 8px !important;
  /* Explicitly 8px */
  padding: 10px 12px;
  font-size: 14px;
  /* Ensure input text size is reasonable */
  color: #111827;
}

.room-custom-input:focus {
  border-color: #005c5c;
  box-shadow: none;
  /* User requested no shadow/focus effect like bootstrap's default */
  outline: none;
}

.room-custom-input::placeholder {
  color: #a3a3a3;
  font-size: 14px;
  font-family: Inter;
  font-weight: 400;
  word-wrap: break-word;
}

/* Room Facilities Select Button */
.btn-room-select {
  color: #005c5c !important;
  border: 1px solid #e5e7eb !important;
  /* Border as per reference if user claims specific border */
  background: white !important;
  padding: 8px 24px !important;
  border-radius: 8px !important;
  font-weight: 600;
  font-size: 13px;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: none !important;
  /* User said "select butoon ki border hi ain refrence diye fir bhi" - checking image again */
  /* Image shows a distinct border. Let's stick to a clean border. */
}

.btn-add-more-room {
  border-radius: 8px !important;
  background-color: #004d4d !important;
  /* Dark teal */
  font-size: 12px;
  padding: 6px 20px !important;
}

.info-icon-svg {
  width: 16px;
  height: 16px;
  margin-left: 6px;
  vertical-align: text-bottom;
}

/* Content Updates Table Specifics */
.status-approved {
  background-color: #ecfdf5;
  color: #065f46;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #d1fae5;
  display: inline-block;
}

.status-declined {
  background-color: #fef2f2;
  color: #991b1b;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #fee2e2;
  display: inline-block;
}

.btn-open-detail {
  background-color: transparent;
  color: #6b7280;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-open-detail:hover {
  background-color: #f3f4f6;
  color: #111827;
}

.category-tooltip-badge {
  background-color: #4b5563;
  /* Dark Grey */
  color: #ffffff;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
  display: inline-block;
  font-weight: 500;
}

/* Shadow Row Effect for Table */
/* Shadow Row Effect for Table */
.content-updates-table {
  border-collapse: separate !important;
  border-spacing: 0 12px !important;
  /* Add spacing between rows */
  margin-top: -12px;
}

.content-updates-table thead th {
  background-color: #f9fafb;
  /* Gray-50 */
  color: #777b85;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  padding: 16px 24px;
  border-bottom: none;
  text-transform: capitalize;
  white-space: nowrap;
  text-align: center;
}

/* Match rounded corners for header if needed, usually managed by overflow of container or manual radius */
/* Match rounded corners for header if needed, usually managed by overflow of container or manual radius */
.content-updates-table thead th:first-child {
  border-top-left-radius: 8px;
}

.content-updates-table thead th:last-child {
  border-top-right-radius: 8px;
}

/* Actually, standard tables usually only round top corners of thead. 
   But since we have border-spacing, maybe full round? 
   Let's check tracking-table. It doesn't seem to have explicit radius on TH. 
   But user asked "th ki border raduis same rkho rate updates jaise".
   Rate updates tracking-table is standard. 
   I will add just top radius to match standard rounded tables if that's what they mean. 
   However with border-spacing, thead stands alone.
*/

.content-updates-table tbody tr {
  transition: all 0.2s;
}

/* Default cells transparent border */
.content-updates-table tbody tr td {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  background: transparent;
  vertical-align: middle;
  /* Center vertically */
  padding: 4px 14px;
  /* Ensure padding matches */
  text-align: center;
}

/* Shadow Row Specifics */
.content-updates-table .shadow-row td {
  background-color: #ffffff;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}

/* Offcanvas Customizations */
#bankDetailsOffcanvas {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  overflow: hidden;
  border-left: none;
}

/* Remove focus outline from close button */
#bankDetailsOffcanvas .btn-close:focus {
  box-shadow: none;
  outline: none;
}

.content-updates-table .shadow-row td:first-child {
  border-left: 1px solid #f3f4f6;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.content-updates-table .shadow-row td:last-child {
  border-right: 1px solid #f3f4f6;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* Add shadow to the cells of the row via box-shadow on TR? No, on TD is safer or pseudo */
/* Actually, let's try box-shadow on the TR but dependent on display */
/* For spacing to work, we need consistent display. */

.content-updates-table .shadow-row {
  /* Using filter drop-shadow acts on the element shape */
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.04));
}

/* Links */
.img-link {
  color: #111827;
  text-decoration: underline;
  font-weight: 600;
}

/* Search History Table Specifics */
.search-history-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.search-history-table thead th {
  background-color: #f9fafb;
  color: #777b85;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  padding: 16px 24px;
  text-align: center;
  border-bottom: none;
  text-transform: capitalize;
  white-space: nowrap;
}

.search-history-table thead th:first-child {
  border-top-left-radius: 8px;
}

.search-history-table thead th:last-child {
  border-top-right-radius: 8px;
}

.search-history-table tbody td {
  text-align: center;
  vertical-align: middle;
  padding: 12px 24px;
  color: #111827;
  font-size: 14px;
  border-bottom: 1px solid #f3f4f6;
}

.search-history-table tbody td:nth-child(2),
.search-history-table tbody td:nth-child(3),
.search-history-table tbody td:nth-child(5) {
  color: var(--new-web-app-white-theme-font, #111827);
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
  line-height: 21px;
  word-wrap: break-word;
}

.tracking-table tbody td {
  vertical-align: middle;
  padding: 6px 14px;
  color: #111827;
  font-size: 14px;
  border-bottom: 1px solid #f3f4f6;
  white-space: nowrap;
  /* Prevent wrapping */
  text-align: center;
}

.status-booked,
.status-searched {
  padding: 6px 14px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  display: inline-block;
  text-align: center;
  min-width: 100px;
  /* Ensure same width */
}

.status-booked {
  background-color: #ecfdf5;
  color: #1e8e1b;
  border: 1px solid #d1fae5;
}

.status-searched {
  background-color: #fff7ed;
  color: #c37908;
  border: 1px solid #ffedd5;
}

/* Booking Details Table Specifics */
.booking-details-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.booking-details-table thead th {
  background-color: #f9fafb;
  color: #777b85;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  padding: 16px 24px;
  text-align: center;
  border-bottom: none;
  text-transform: capitalize;
  white-space: nowrap;
}

.booking-details-table thead th:first-child {
  border-top-left-radius: 8px;
}

.booking-details-table thead th:last-child {
  border-top-right-radius: 8px;
}

.booking-details-table tbody td {
  text-align: center;
  vertical-align: middle;
  padding: 12px 24px;
  color: #111827;
  font-size: 14px;
  border-bottom: 1px solid #f3f4f6;
}

.booking-details-table tbody td:nth-child(3),
.booking-details-table tbody td:nth-child(4) {
  color: var(--new-web-app-white-theme-font, #111827);
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
  line-height: 21px;
  word-wrap: break-word;
}

.btn-more-info {
  background: none;
  border: none;
  padding: 0;
  color: #111827;
  font-size: 18px;
  transition: color 0.2s;
}

.btn-more-info:hover {
  color: #000;
}

/* Status Badges for Booking */
.status-confirmed {
  background-color: #ecfdf5;
  color: #027a48;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 400;
  display: inline-block;
  min-width: 95px;
}

.status-cancelled {
  background-color: #fef2f2;
  color: #b91c1c;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  min-width: 95px;
}

.status-paid {
  background-color: #ecfdf5;
  color: #027a48;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 500;
  display: inline-block;
  min-width: 80px;
}

.status-refunded {
  background-color: #f3f4f6;
  color: #374151;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 500;
  display: inline-block;
  min-width: 95px;
}

.status-pending {
  background-color: #fffaeb;
  color: #b54708;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 500;
  display: inline-block;
  min-width: 95px;
}

.status-not-paid {
  background-color: #f3f4f6;
  color: #374151;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 500;
  display: inline-block;
  min-width: 95px;
}

/* Booking Details Modal Specifics */
.booking-modal-content {
  border-radius: 12px;
  border: none;
}

.booking-modal-header {
  border-bottom: 0;
  display: flex;
  justify-content: space-between;
  padding: 24px;
}

.status-badge-success {
  color: #1e8e1b;
  font-size: 14px;
  font-family: Inter;
  font-weight: 600;
  line-height: 21px;
  word-wrap: break-word;
  padding: 6px 12px;
  background-color: #ecfdf5;
  border-radius: 6px;
}

.booking-modal-title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: #111827;
  font-weight: 700;
}

.booking-modal-body {
  padding: 24px;
  padding-top: 0;
}

.booking-info-row {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  margin-bottom: 12px;
}

.booking-info-row.mb-0 {
  margin-bottom: 0 !important;
}

.booking-label {
  font-size: 14px;
  font-weight: 500;
  color: #6c6c6c;
  width: auto;
  margin-right: 5px;
  /* Fixed width for alignment */
  flex-shrink: 0;
}

.booking-value {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  flex: 1;
}

.booking-modal-close-btn {
  border: none;
  background: transparent;
  padding: 0;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.booking-modal-close-btn:hover {
  opacity: 1;
}

/* Tracking Page Refactoring */
.text-gray-secondary {
  color: #6b7280;
}

.reason-text {
  font-size: 13px;
}

.tracking-offcanvas {
  width: 500px;
}

.tracking-offcanvas-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #111827;
}

.tracking-detail-label {
  font-family: "Inter";
  font-weight: 600;
  font-size: 14px;
  color: #111827;
}

.tracking-detail-text {
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
}

.tracking-detail-line-height {
  line-height: 1.5;
}

.tracking-status-declined {
  padding: 4px 12px;
  font-size: 13px !important;
  /* helper to override if needed */
}

.btn-open-detail i {
  font-size: 10px;
}

/* Promotion Page Styles */
.promo-pills .nav-link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #6c6c6c;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 16px;
  transition: all 0.2s ease;
}

.promo-pills .nav-link.active {
  color: #005c5c;
  border-color: #005c5c;
  background-color: hsla(180, 100%, 18%, 0.1);
  border-width: 1px;
}

.promo-pills .nav-link:hover {
  color: #005c5c;
  border-color: #005c5c;
  background-color: hsla(180, 100%, 18%, 0.1);
}

.promo-pills .nav-link.active:hover {
  border-color: #005c5c;
}

.btn-add-promotion {
  background-color: #005c5c;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.btn-add-promotion:hover {
  background-color: #004a4a;
}

.promotion-list-header {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr 1fr 0.8fr 0.8fr;
  gap: 12px;
  background-color: #f3f4f6;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 0;
  align-items: center;
}

.promotion-list-header .header-item {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
}

.promotion-list-header .header-item.center-text {
  text-align: center;
}

.promotion-list-row {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr 1fr 0.8fr 0.8fr;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid #e5e7eb;
  align-items: center;
  background-color: #fff;
  transition: background-color 0.2s;
}

.promotion-list-row:hover {
  background-color: #f9fafb;
}

.promotion-list-row:last-child {
  border-bottom: none;
}

.promotion-cell {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promotion-cell.promo-name {
  font-weight: 600;
  color: #111827;
}

.promotion-cell.center-text {
  text-align: center;
}

.promotion-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.action-icon {
  font-size: 14px;
  cursor: pointer;
  color: #6b7280;
  transition: color 0.2s;
}

.action-icon:hover {
  color: #111827;
}

.action-icon.delete:hover {
  color: #dc2626;
}

/* Custom Toggle for Stop Sell matches other pages if I can, but simple toggle is safer for now */
.form-switch .form-check-input {
  width: 32px;
  height: 18px;
  cursor: pointer;
}

/* Rate Rule Modal Styles */

.modal-rate-rule .modal-content {
  border-radius: 12px;
  border: none;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.modal-rate-rule .modal-header {
  border-bottom: none;
  padding: 24px 32px 10px;
}

.modal-rate-rule .modal-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #111827;
}

.modal-rate-rule .btn-close {
  background-size: 10px;
}

.modal-rate-rule .modal-body {
  padding: 10px 32px 32px;
}

/* Stepper Styles */
.rate-rule-stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  position: relative;
  padding: 0 20px;
  gap: 0;
  /* Removing gap, using margins or flex-grow on line */
}

.stepper-item {
  display: flex;
  align-items: center;
  gap: 12px;
  /* Gap between circle and label */
  position: relative;
  z-index: 2;
}

.stepper-circle {
  width: 32px;
  /* Slightly larger per image 2 */
  height: 32px;
  border-radius: 50%;
  background-color: #9e9e9e;
  border: 1px solid #fff;
  /* Pending is outlined teal */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  transition: all 0.3s;
}

.stepper-label {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}

.stepper-item.completed .stepper-circle {
  background-color: #005c5c;
  color: #fff;
  border-color: #005c5c;
}

.stepper-item.active .stepper-circle {
  background-color: transparent;
  color: #005c5c;
  border-color: #005c5c;
}

.stepper-item.active .stepper-label,
.stepper-item.completed .stepper-label {
  font-weight: 600;
  color: #111827;
}

/* Connecting Line */
.stepper-line {
  flex-grow: 1;
  height: 2px;
  background-color: #e5e7eb;
  /* Default Grey */
  margin: 0 16px;
  min-width: 20px;
}

/* If previous item is completed, color the line following it */
.stepper-item.completed+.stepper-line {
  background-color: #005c5c;
}

/* Pills Selection as Bootstrap Nav */
.selection-pills-container .nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.selection-pills-container .nav-link {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.selection-pills-container .nav-link:hover {
  border-color: #d1d5db;
}

.selection-pills-container .nav-link.active {
  border-color: #005c5c;
  color: #005c5c;
  border-width: 1px;
  background-color: #f0fdfa;
  font-weight: 600;
}

/* Custom Pillowo Select */
.pillowo-select {
  position: relative;
  width: 100%;
}

.pillowo-selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #111827;
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  padding: 0 12px;
  /* Ensure padding is consistent */
}

.pillowo-selected .text.placeholder {
  color: #9ca3af;
}

.pillowo-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-top: 4px;
  padding: 0;
  list-style: none;
  z-index: 50;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  max-height: 200px;
  overflow-y: auto;
}

.pillowo-options.show {
  display: block;
}

.pillowo-options li {
  padding: 2px 5px;
  cursor: pointer;
  font-size: 14px;
  color: #111827;
  transition: background-color 0.2s;
  font-family: "Inter", sans-serif;
  border-radius: 4px;
  /* Slight radius for hover effect */
  margin: 4px;
  /* spacing for hover effect */
}

.pillowo-options li:hover {
  background-color: #f3f4f6;
}

/* Form Styles */
.form-group-label {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
}

.form-control-custom {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 14px;
  color: #111827;
  width: 100%;
  font-family: "Inter", sans-serif;
  transition: border-color 0.2s;
  height: 34px;
}

.form-control-custom:focus {
  border-color: #005c5c;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 92, 92, 0.1);
}

.form-control-custom::placeholder {
  color: #9ca3af;
}

/* Date Input Custom Wrapper */
.date-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.date-input-wrapper input {
  padding-right: 36px;
}

.date-input-wrapper i {
  position: absolute;
  right: 12px;
  color: #111827;
  font-size: 14px;
  pointer-events: none;
}

.radio-group-horizontal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.custom-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #4b5563;
}

.custom-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #005c5c;
  cursor: pointer;
}

/* Modal Footer */
.modal-footer-custom {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 20px;
}

.btn-modal-cancel {
  background-color: transparent;
  color: #005c5c;
  border: 1.5px solid #005c5c;
  padding: 9px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-modal-cancel:hover {
  background-color: #f9fafb;
}

.btn-modal-next {
  background-color: #005c5c;
  border: none;
  color: white;
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-modal-next:hover {
  background-color: #004a4a;
}

.sub-label {
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

/* Booking Page Styles */
.booking-pills .nav-link {
  color: #4b5563;
  font-weight: 500;
  background-color: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 8px 16px;
  margin-right: 8px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}

.booking-pills .nav-link.active {
  color: #005c5c;
  /* Teal text */
  background-color: #f0fdfa;
  /* Light Teal bg */
  border-color: #005c5c;
  font-weight: 600;
}

.btn-action-decline {
  background-color: #fef2f2;
  /* Light Red */
  color: #991b1b;
  /* Dark Red */
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

.btn-action-approve {
  background-color: #ecfdf5;
  /* Light Green */
  color: #166534;
  /* Dark Green */
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

/* Booking Page Helper Classes */
.booking-label-sm {
  font-size: 14px;
}

.pillowo-selected-booking {
  height: 42px;
  padding: 10px 14px;
  min-height: auto;
}

.btn-inventory-apply.btn-auto {
  width: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.btn-inventory-download.btn-auto {
  width: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.booking-th {
  background-color: #f3f4f6;
}

.booking-th-first {
  text-align: left;
  padding-left: 24px;
  background-color: #f3f4f6;
}

.booking-td-primary {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}

.booking-td-secondary {
  font-size: 13px;
  color: #4b5563;
}

.booking-td-accent {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
}

/* Profile Page Styles */
.profile-pills .nav-link {
  color: #6c6c6c;
  /* Gray text */
  font-weight: 600;
  background-color: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 16px;
  margin-right: 8px;
  line-height: 21px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  transition: all 0.2s ease;
}

.profile-pills .nav-link:hover {
  background-color: #f9fafb;
}

.profile-pills .nav-link.active {
  color: #008080;
  /* Teal text - matching image roughly */
  background-color: #f0fdfa;
  border-color: #008080;
  font-weight: 600;
}

.profile-section-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  margin-top: 15px;
  font-family: "Inter", sans-serif;
}

.profile-section-title:first-of-type {
  margin-top: 0;
}

.form-group-profile {
  margin-bottom: 10px;
}

.form-label-profile {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  /* Darker gray/black */
  margin-bottom: 4px;
  display: block;
  font-family: "Inter", sans-serif;
}

.form-control-profile {
  display: block;
  width: 100%;
  padding: 6px 14px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: #111827;
  background-color: #fafafa;
  /* Light gray bg */
  border: 1px solid hsla(220, 13%, 91%, 1);
  /* No border usually, or very light */
  border-radius: 16px;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.form-control-profile:focus {
  color: #111827;
  background-color: #fff;
  border-color: #008080;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 128, 128, 0.25);
}

.form-control-profile::placeholder {
  color: #9ca3af;
}

/* Custom Select wrapper to match input style if needed, or use .form-control-profile on select */
select.form-control-profile {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  appearance: none;
}

.profile-add-link {
  color: var(--admin-primary, #005c5c);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  float: right;
}

/* Document Upload Style */
.document-upload-card {
  display: flex !important;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
}

.doc-icon-wrapper-large img {
  margin-right: 15px;
}

.doc-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 14px;
}

.doc-icon-wrapper i {
  font-size: 22px;
  color: #006060;
}

.doc-info {
  flex-grow: 1;
}

.doc-name {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 5px;
  line-height: 1.2;
}

.doc-size {
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 0;
}

.doc-delete {
  color: #9ca3af;
  cursor: pointer;
  font-size: 14px;
}

.doc-delete:hover {
  color: #ef4444;
}

/* Radio buttons for Yes/No */
.profile-radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.profile-radio-group .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 0;
  margin-bottom: 0;
}

.profile-radio-group .form-check-input {
  float: none;
  margin-left: 0;
  width: 18px;
  height: 18px;
  margin-top: 0;
  border-color: #d1d5db;
}

.profile-radio-group .form-check-input:checked {
  background-color: #0d9488;
  border-color: #0d9488;
}

.profile-radio-group .form-check-label {
  font-size: 14px;
  color: #4b5563;
  font-weight: 500;
  cursor: pointer;
}

.profile-bottom-add {
  margin-top: 20px;
  text-align: center;
}

.pillowo-selected-profile {
  height: 40px !important;
  padding: 8px 12px !important;
  min-height: auto !important;
  border-radius: 16px !important;
  background-color: #fafafa !important;
  border: 1px solid hsla(220, 13%, 91%, 1);
}

/* Image Tab Styles */

/* Sidebar Navigation */
.image-tabs-sidebar .nav-link {
  text-align: left;
  color: #4b5563;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 8px;
  background-color: transparent;
  transition: all 0.2s;
  font-family: "Inter", sans-serif;
}

.image-tabs-sidebar .nav-link:hover {
  background-color: #f3f4f6;
  color: #111827;
}

.image-tabs-sidebar .nav-link.active {
  background-color: #e0f2f1;
  /* Light Teal background */
  color: #0f766e;
  /* Teal Text */
  font-weight: 600;
}

/* Image Card Section */
.image-section-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0px 4px 24px rgba(17, 24, 39, 0.05);
}

.image-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.image-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  font-family: "Inter", sans-serif;
}

.image-card-actions {
  display: flex;
  gap: 12px;
}

.action-icon {
  font-size: 12px;
  color: #111827;
  /* Dark icon */
  cursor: pointer;
  transition: color 0.2s;
}

.action-icon:hover {
  color: #ef4444;
  /* Red for delete */
}

.action-icon.upload-icon:hover {
  color: #0d9488;
  /* Teal for upload */
}

/* Image Content Layout */
.image-content-row {
  display: flex;
  align-items: flex-start;
}

/* Cover Image Wrapper */
.cover-img-wrapper {
  position: relative;
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid #e5e7eb;
  flex-shrink: 0;
  text-align: center;
}

.cover-img {
  width: 180px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 12px;
}

.edit-cover-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #005c5c;
  text-decoration: none;
  cursor: pointer;
}

.edit-cover-link:hover {
  color: #0d9488;
}

.edit-cover-link i {
  font-size: 16px;
}

/* Thumbnail Grid */
.thumbnail-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  /* padding-top: 20px; */
}

.thumbnail-item {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-checkbox-input {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.image-checkbox-input:checked {
  background-color: #0f766e;
  border-color: #0f766e;
}

.image-checkbox-input:checked::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: white;
  font-size: 14px;
}

.icon-overlay {
  position: absolute;
  top: 4px;
  right: 4px;
  color: white;
  font-size: 16px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Inventory Page Specific Styles */
.room-type-cell {
  position: relative;
}

.pillowo-selected-header {
  height: 44px;
  /* Matched to custom-input */
  padding: 8px 16px;
  min-height: auto;
  border: 1px solid #e5e7eb;
  background-color: #f3f4f6;
  /* Ash/Grey color */
  border-radius: 16px;
  /* Matched to custom-input */
}

.pillowo-selected-header .text.placeholder {
  color: #9ca3af;
  font-size: 14px;
}

.pillowo-selected-header .arrow {
  font-size: 10px;
  color: #111827;
}

.room-code-id {
  font-size: 12px;
  font-weight: 600;
}

.room-code-desc {
  font-size: 12px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.room-edit-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  cursor: pointer;
}

/* Policy Tab Styles */
.policy-section-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}

.policy-item-box {
  background-color: #f9fafb;
  border-radius: 16px;
  padding: 9px 16px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.policy-text {
  font-size: 13px;
  color: #6c6c6c;
  margin: 0;
  font-weight: 500;
  line-height: 22px;
  flex: 1;
  font-family: "Inter", sans-serif;
}

.policy-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Amenities Tab Layout */
.amenities-container {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.amenities-sidebar {
  width: 280px;
  flex-shrink: 0;
  padding-right: 16px;
}

.amenities-content-area {
  flex: 1;
  padding: 20px;
  background: white;
  box-shadow: 0px 4px 24px rgba(17, 24, 39, 0.05);
  border-radius: 12px;
  border: 1px #e5e7eb solid;
}

/* Update Nav Link for sidebar */
.amenities-nav-link {
  color: #4b5563;
  /* Gray-600 */
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 6px;
  margin-bottom: 2px;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
  display: block;
  background: transparent;
  border: none;
}

.amenities-nav-link:hover {
  background-color: #f3f4f6;
  color: #111827;
}

.amenities-nav-link.active {
  background-color: #d4e2e1 !important;
  color: #111827 !important;
  font-weight: 600;
}

.amenity-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 0;
  /* border-bottom: 1px solid #F3F4F6; */
}

.amenity-row:last-child {
  border-bottom: none;
}

.amenity-label {
  font-size: 14px;
  font-weight: 400;
  color: #1118278c;
  font-family: "Inter", sans-serif;
}

.amenity-radio-group {
  display: flex;
  gap: 24px;
}

.amenity-radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.amenity-radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #004a4a;
  cursor: pointer;
  margin: 0;
}

.amenity-radio-label {
  font-size: 14px;
  color: #6c6c6c;
  font-weight: 500;
}

@media (max-width: 1025px) {
  .admin-content {
    padding: 20px 20px;
  }
}

@media (max-width: 991px) {
  .login-left {
    display: none;
  }
}

/* Custom Pillowo Select - Ash Style */
.pillowo-select {
  position: relative;
  width: 100%;
}

.pillowo-selected {
  height: 44px;
  padding: 0 16px;
  border: 1px solid #e5e7eb;
  background-color: #f3f4f6;
  /* Ash color forced */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  color: #111827;
}

.pillowo-selected-one {
  background-color: transparent !important;
}

.pillowo-selected .text.placeholder {
  color: #a3a3a3;
}

.pillowo-selected .arrow {
  font-size: 12px;
  color: #111827;
}

.pillowo-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-top: 4px;
  padding: 0;
  list-style: none;
  z-index: 1000;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pillowo-select.active .pillowo-options {
  display: block;
}

.pillowo-options li {
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #111827;
  transition: background 0.2s;
}

.pillowo-options li:hover {
  background-color: #f3f4f6;
}

.pillowo-options li.selected {
  background-color: #005c5c;
  font-weight: 600;
}

/* Accordion Icon Rotation */
.section-header i {
  transition: transform 0.3s ease;
}

.section-header.collapsed i {
  transform: rotate(180deg);
}

/* Custom Select Search & Add Button */
.pillowo-selected .select-search-input {
  border: none;
  background: transparent;
  outline: none;
  flex-grow: 1;
  min-width: 0;
  /* Prevent overflow */
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  margin-right: 8px;
}

.btn-select-add {
  background-color: #005c5c;
  color: #fff;
  border: none;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  margin-right: 8px;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.btn-select-add:hover {
  background-color: #004040;
}

/* Gallery Item Styles for Photos & Videos Tab */
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.gallery-item {
  position: relative;
  width: 120px;
  height: 120px;
}

.gallery-item .gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Delete Icon */
.delete-icon {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  border: 1px solid #f3f4f6;
  transition: all 0.2s ease;
}

.delete-icon:hover {
  background: #fee2e2;
  transform: scale(1.1);
}

.delete-icon i {
  color: #ef4444;
  font-size: 13px;
}

/* Document Preview Modal Buttons */
.btn-modal-download {
  background-color: #005c5c;
  /* Primary Teal */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 500;
}

.btn-modal-download:hover {
  background-color: #004040;
  color: #ffffff;
}

.btn-modal-close {
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-weight: 500;
}

.btn-modal-close:hover {
  background-color: #e5e7eb;
  color: #111827;
}

/* Room Status Dropdown */
.pillowo-status-select {
  position: relative;
  display: inline-block;
  border-radius: 6px;
  padding: 0px 12px;
  min-width: 100px;
  transition: background-color 0.2s;
}

.pillowo-status-select select {
  cursor: pointer;
  font-size: 13px;
  width: 100%;
  font-weight: 400 !important;
}

/* Active State */
.pillowo-status-select.active {
  background-color: #dcfce7;
  /* Light Green */
}

.pillowo-status-select.active select {
  color: #1e8e1b !important;
  /* Dark Green */
}

.pillowo-status-select.active i {
  color: #1e8e1b !important;
}

/* Inactive State */
.pillowo-status-select.inactive {
  background-color: #fee2e2;
  /* Light Red */
}

.pillowo-status-select.inactive select {
  color: #991b1b !important;
  /* Dark Red */
}

.pillowo-status-select.inactive i {
  color: #991b1b !important;
}

/* Edit Button */
.btn-room-edit {
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  color: #2da1a1;
  border-radius: 8px;
  padding: 6px 16px;
  font-weight: 400;
  transition: all 0.2s;
  font-size: 13px;
}

.btn-room-edit:hover {
  background-color: #f9fafb;
  color: #1f2937;
}

.rate-rule-stepper {
  justify-content: flex-start;
  overflow-x: auto;
  padding-bottom: 10px;
  white-space: nowrap;
  scrollbar-width: none;
}

.rate-rule-stepper .stepper-item {
  flex-shrink: 0;
}

.rate-rule-stepper .stepper-line {
  flex-shrink: 0;
  min-width: 40px;
}

/* Optional: Custom scrollbar for better visibility */
.rate-rule-stepper::-webkit-scrollbar {
  height: 4px;
}

.rate-rule-stepper::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.rate-rule-stepper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

/* Add Room Modal Styles */
/* Ensure nested modal is on top */
#roomFacilitiesModal {
  z-index: 1060;
}

.pills-mandatory-tab-scroll {
  overflow-y: scroll;
  height: 79vh;
  scrollbar-width: none;
}

/* Error Styling for Custom Select */
.pillowo-select.has-error .pillowo-selected {
  border: 1px solid #dc3545 !important;
}

.btn-edit-gallery {
  font-size: 0.8rem;
  padding: 4px 12px;
  color: #005c5c;
  border: 1px solid #005c5c;
  background: transparent;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-edit-gallery:hover {
  background: #005c5c;
  color: #ffffff;
}

.table-responsive {
  scrollbar-width: thin;
}

/* Supplier Details Page Specific Styles */
.hotel-description-truncate,
.hotel-facilities-truncate {
  max-width: 200px;
}

.hotel-modal-content {
  border-radius: 12px !important;
  border: none !important;
}

.hotel-modal-header {
  background: #f8f9fa !important;
  border-bottom: 1px solid #eee !important;
}

.hotel-modal-title-custom {
  font-weight: 600 !important;
  color: #333 !important;
}

.vertical-detail-table td.detail-label {
  background-color: #fcfcfc !important;
  font-weight: 400 !important;
  color: #444 !important;
  padding: 6px 20px !important;
  text-transform: capitalize;
}

.vertical-detail-table td.detail-value {
  padding: 6px 20px !important;
  font-weight: 400 !important;
  color: #444 !important;
}

.hotel-thumbnail {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #eee;
}

.map-icon-small {
  font-size: 10px;
}

/* Dashboard Statistics Styles */
.dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 10px 0;
}

@media (max-width: 1200px) {
  .dashboard-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dashboard-stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 15px 15px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 5px;
  border: 1px solid #f0f0f0;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-content {
  text-align: left;
}

.stat-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-wrap i {
  font-size: 16px;
  color: #fff;
}

.stat-number {
  font-size: 19px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: #6b7280;
  text-transform: capitalize;
  white-space: nowrap;
}

/* Stat Icon Color Variants */
.bg-teal {
  background-color: #005c5c;
}

.bg-blue {
  background-color: #3b82f6;
}

.bg-green {
  background-color: #10b981;
}

.bg-orange {
  background-color: #f59e0b;
}

.bg-purple {
  background-color: #8b5cf6;
}

.bg-rose {
  background-color: #f43f5e;
}

.bg-indigo {
  background-color: #6366f1;
}

.bg-amber {
  background-color: #d97706;
}

.bg-cyan {
  background-color: #06b6d4;
}

.bg-red {
  background-color: #ef4444;
}

/* Refined Stat Dropdown UI */
.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-dropdown-wrap {
  margin-bottom: 5px;
}

.stat-dropdown {
  border: none !important;
  border-bottom: 2px dashed #005c5c !important;
  color: #005c5c !important;
  border-radius: 0 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  padding: 0 0 2px 0 !important;
  background-color: transparent !important;
  cursor: pointer !important;
  outline: none !important;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  width: auto;
}

.stat-dropdown:hover {
  border-bottom-color: #005c5c !important;
  color: #005c5c !important;
}

.stat-dropdown:focus {
  border-bottom-color: #005c5c !important;
  color: #005c5c !important;
}

/* Markup Management Styles */
.markup-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  padding: 24px;
}

.markup-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.markup-section-title i {
  color: #005c5c;
}

.markup-form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 15px;
  background: #f8fafc;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  /* overflow-x: auto;
  scrollbar-width: thin; */
}

.markup-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.markup-group label {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.markup-control {
  height: 42px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  padding: 0 12px;
  font-size: 13px;
  color: #1e293b;
  font-weight: 500;
  transition: all 0.2s ease;
  min-width: 120px;
  height: 34px;
}

.markup-control:focus {
  outline: none;
  border-color: #005c5c;
  box-shadow: 0 0 0 3px rgba(0, 92, 92, 0.1);
}

.markup-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 5px;
  height: 34px;
}

.markup-input-val {
  width: 100px;
  height: 34px;
}

.markup-btn-save {
  height: 34px;
  background: #005c5c;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0 15px;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.markup-btn-save:hover {
  background: #004d4d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 92, 92, 0.2);
}

.markup-date-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.date-label-inline {
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
}

/* Markup Table Styles */
.markup-table-wrapper {
  margin-top: 20px;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
}

.markup-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.markup-table th {
  background: #f8fafc;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.markup-table td {
  padding: 8px 20px;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 400;
  font-size: 13px;
}

.markup-table tbody tr:last-child td {
  border-bottom: none;
}

.markup-table tbody tr:hover {
  background-color: #f8fafc;
}

.markup-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 200px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-percent {
  background: #ecfdf5;
  color: #059669;
}

.badge-flat {
  background: #eff6ff;
  color: #3b82f6;
}

.markup-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.markup-action-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.markup-action-btn.delete:hover {
  background: #fef2f2;
  color: #ef4444;
}

/* ---------------31-01-2026---------- */

/* Sidebar Submenu Styles */
.submenu-list {
  display: none;
  list-style: none;
  padding: 0;
  background-color: transparent;
  margin-top: 5px;
}

.nav-item.open .submenu-list {
  display: block;
}

.submenu-link {
  padding: 10px 20px 10px 52px !important;
  font-size: 13px !important;
  color: #6c757d !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.submenu-link:hover {
  color: #005c5c !important;
  background-color: transparent !important;
}

.submenu-icon {
  width: 20px;
  height: 20px;
  font-size: 16px;
  text-align: center;
}

.toggle-icon {
  transition: transform 0.3s ease;
}

.nav-item.open .toggle-icon {
  transform: rotate(180deg);
}

/* Employee Dashboard Styles */
.employee-stat-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: start;
  gap: 15px;
  text-align: center;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  height: 100%;
  border: 1px solid #f3f4f6;
  transition: transform 0.2s;
}

.employee-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.employee-stat-card.card-blue {
  border-bottom: 3px solid #3b82f6;
}

.employee-stat-card.card-green {
  border-bottom: 3px solid #10b981;
}

.employee-stat-card.card-orange {
  border-bottom: 3px solid #f97316;
}

.employee-stat-card.card-red {
  border-bottom: 3px solid #ef4444;
}

.stat-icon-wrapper {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 16px; */
  font-size: 20px;
}

.bg-blue-subtle {
  background-color: #eff6ff;
}

.text-blue {
  color: #3b82f6;
}

.bg-green-subtle {
  background-color: #ecfdf5;
}

.text-green {
  color: #10b981;
}

.bg-orange-subtle {
  background-color: #fff7ed;
}

.text-orange {
  color: #f97316;
}

.bg-red-subtle {
  background-color: #fef2f2;
}

.text-red {
  color: #ef4444;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0;
}

/* Attendance List */
.attendance-list-wrapper {
  max-height: 400px;
  overflow-y: auto;
}

.attendance-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.attendance-item:hover {
  background-color: #f8fafc;
}

.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f3f4f6;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.employee-name {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
}

.employee-role {
  font-size: 11px;
  color: #6b7280;
}

.attendance-time {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
}

/* Employee Table Enhancements */
.employee-table th {
  font-weight: 600;
  color: #4b5563;
  text-transform: uppercase;
  font-size: 11px;
  padding: 14px 16px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  background-color: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

.employee-table td {
  padding: 8px 16px;
  font-size: 13px;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  white-space: nowrap;
}

.employee-table tbody tr {
  transition: background-color 0.2s;
}

.employee-table tbody tr:hover {
  background-color: #f8fafc;
}

.btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.2s;
  font-size: 13px;
  margin-left: 6px;
}

.btn-view {
  background-color: #eff6ff;
  color: #3b82f6;
}

.btn-view:hover {
  background-color: #3b82f6;
  color: #ffffff;
}

.btn-edit {
  background-color: #fff7ed;
  color: #f97316;
}

.btn-edit:hover {
  background-color: #f97316;
  color: #ffffff;
}

/* Scrollbar Style */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Create Employee Button */
.btn-primary {
  background-color: #e8f5e9;
  /* Light Mint/Ash Green */
  border-color: #e8f5e9;
  color: #fff;
  /* Darker Green for text contrast */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
}

.btn-primary:hover {
  background-color: #c8e6c9;
  /* Slightly darker on hover */
  border-color: #c8e6c9;
  color: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:focus-visible,
.btn:focus-visible {
  background-color: #e8f5e9 !important;
  border-color: #e8f5e9 !important;
  color: #2e7d32 !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.2s;
  outline: none !important;
}

/* Create Employee Page Styles */
.form-label {
  font-weight: 500;
  color: #111827;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-label span.text-danger {
  color: #ef4444 !important;
}

.form-control,
.form-select {
  border-radius: 8px;
  border-color: #e5e7eb;
  padding: 8px 16px;
  font-size: 14px;
  color: #111827;
  height: 34px;
}

.input-group input.form-control-employee {
  border-radius: 16px 0 0 16px !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--admin-primary);
  box-shadow: 0 0 0 2px rgba(0, 92, 92, 0.1);
}

.btn-primary-custom {
  background-color: #10b981;
  border-color: #10b981;
  color: white;
  padding: 10px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}

.btn-primary-custom:hover {
  background-color: #059669;
  border-color: #059669;
  color: #fff;
}

.btn-secondary-custom {
  background-color: #9ca3af;
  border-color: #9ca3af;
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}

.btn-secondary-custom:hover {
  background-color: #6b7280;
  border-color: #6b7280;
  color: #fff;
}

.password-toggle {
  cursor: pointer;
  color: #9ca3af;
}

.generate-pass-btn {
  background-color: #059669;
  border-color: #059669;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  margin-top: 8px;
  border: none;
}

/* Custom Dropdown UI */
.custom-dropdown-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
}

.custom-dropdown-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #111827;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  /* Rounded corners for the input box */
  cursor: pointer;
  transition: all 0.2s;
  height: 34px;
  /* Match form-control height approximately */
}

.custom-dropdown-trigger:hover {
  border-color: #005c5c;
}

.custom-dropdown-trigger i {
  font-size: 12px;
  color: #111827;
  transition: transform 0.3s;
}

.custom-dropdown-wrapper.open .custom-dropdown-trigger {
  border-color: #005c5c;
  /* Teal border when open */
  border-bottom-left-radius: 8px;
  /* Keep rounded */
  border-bottom-right-radius: 8px;
}

.custom-dropdown-wrapper.open .custom-dropdown-trigger i {
  transform: rotate(180deg);
}

.custom-dropdown-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #005c5c;
  /* Teal border for the dropdown list */
  border-radius: 8px;
  /* More rounded corners */
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-5px);
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 4px;
  /* Increased margin */
}

.custom-dropdown-wrapper.open .custom-dropdown-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

/* Specific style for the first item (Header-like) */
/* Specific style for the first item (Header-like) */
.custom-option.dropdown-header-option {
  background-color: #005c5c;
  /* Teal background */
  color: #fff;
  font-weight: 600;
  padding: 8px 16px;
  /* slightly more padding for header */
  cursor: default;
}

.custom-option.dropdown-header-option:hover {
  background-color: #005c5c;
  /* No hover effect change */
  color: #fff;
}

.custom-option {
  padding: 8px 16px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
  transition: background 0.2s;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.custom-option:last-child {
  border-bottom: none;
}

.custom-option:hover {
  background-color: #f3f4f6;
  color: #000;
}

.input-group-text-employee {
  border-radius: 0 16px 16px 0 !important;
}

/* Confirmation Modal Specific Styles */
.confirm-section-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--admin-primary);
  margin-bottom: 16px;
  border-bottom: 1px dashed #e5e7eb;
  padding-bottom: 8px;
  margin-top: 20px;
}

.confirm-section-title:first-child {
  margin-top: 0;
}

.confirm-item {
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #f3f4f6;
  height: 100%;
}

.confirm-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 4px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.confirm-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  word-break: break-word;
}

.confirm-badge {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.confirm-badge.active {
  background-color: #dcfce7;
  color: #166534;
}

.confirm-badge.inactive {
  background-color: #fee2e2;
  color: #991b1b;
}

/* Confirmation Modal Font Adjustments */
#confirmationDetails small {
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#confirmationDetails span.fw-semibold {
  font-size: 13px !important;
}

/* Success Modal Styles */
.success-animation {
  text-align: center;
  padding: 20px;
}

.checkmark-circle {
  width: 80px;
  height: 80px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
}

.checkmark-circle .background {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #dcfce7;
  position: absolute;
}

.checkmark-circle .checkmark {
  border-radius: 5px;
}

.checkmark-circle .checkmark.draw:after {
  animation-delay: 100ms;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
  animation-fill-mode: forwards;
}

.checkmark-circle .checkmark:after {
  opacity: 1;
  height: 40px;
  width: 20px;
  transform-origin: left top;
  border-right: 4px solid #166534;
  border-top: 4px solid #166534;
  content: "";
  left: 20px;
  top: 40px;
  position: absolute;
}

@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }

  20% {
    height: 0;
    width: 20px;
    opacity: 1;
  }

  40% {
    height: 40px;
    width: 20px;
    opacity: 1;
  }

  100% {
    height: 40px;
    width: 20px;
    opacity: 1;
  }
}

/* Validation Error Styles */
.form-control.is-invalid,
.custom-dropdown-trigger.is-invalid {
  border-color: #dc3545 !important;
  background-image: none !important;
  /* Remove bootstrap default icon if present */
}

/* Ensure custom dropdown trigger also looks red */
.custom-dropdown-trigger.is-invalid {
  border: 1px solid #dc3545 !important;
}

/* =========================================
   Attendance Page Styles
   ========================================= */

/* Filter Card */
.form-label.small.text-uppercase {
  font-size: 11px;
  letter-spacing: 0.5px;
}

/* Stats Cards */
.stats-card-hover {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-bottom: 4px solid transparent;
}

.stats-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

.stats-card-hover .verification-bar {
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.stats-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Custom Table Styles */
.custom-admin-table thead th {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
}

.custom-admin-table tbody td {
  font-size: 14px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #e5e7eb;
}

.custom-admin-table tbody tr:last-child td {
  border-bottom: none;
}

/* Attendance Detailed Table */
.custom-attendance-table thead th {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
}

.custom-attendance-table tbody td {
  font-size: 13px;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #fff;
}

.border-bottom-dashed {
  border-bottom: 1px dashed #e5e7eb !important;
}

/* Avatar in table */
.avatar-sm {
  font-size: 12px;
}

/* =========================================
   Unique Attendance Page Enhancements
   ========================================= */

/* Gradient Stats Cards */
.stats-card-hover {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
}

.stats-card-hover:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.05),
    0 10px 10px -5px rgba(0, 0, 0, 0.02) !important;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  /* Slight tint shift on hover */
}

/* Specific Card Colors (Overrides) */
.col-xl-3:nth-child(1) .stats-card-hover:hover {
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

/* Blue */
.col-xl-3:nth-child(2) .stats-card-hover:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

/* Green */
.col-xl-3:nth-child(3) .stats-card-hover:hover {
  background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

/* Red */
.col-xl-3:nth-child(4) .stats-card-hover:hover {
  background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
}

/* Yellow */

/* Icon Styling */
.stats-icon-wrapper {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Floating Table Effect */
.custom-attendance-table {
  border-collapse: separate;
  border-spacing: 0 6px;
  /* Spacing between rows */
}

.custom-attendance-table thead th {
  background: #4f46e5;
  color: white;
  padding: 15px;
  border: none;
  letter-spacing: 0.8px;
  font-size: 11px;
  text-transform: uppercase;
  box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
}

.custom-attendance-table thead th:first-child {
  border-radius: 8px 0 0 8px;
}

.custom-attendance-table thead th:last-child {
  border-radius: 0 8px 8px 0;
}

.custom-attendance-table tbody tr {
  background: #fff;
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

.custom-attendance-table tbody tr:hover {
  transform: scale(1.002);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.05),
    0 4px 6px -2px rgba(0, 0, 0, 0.03);
  z-index: 10;
  position: relative;
}

.custom-attendance-table tbody td {
  border: none;
  /* Remove default border */
  padding: 16px;
  vertical-align: middle;
}

.custom-attendance-table tbody td:first-child {
  border-radius: 8px 0 0 8px;
}

.custom-attendance-table tbody td:last-child {
  border-radius: 0 8px 8px 0;
}

/* Filter Section Enhancement */
.card-body .form-select {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  transition: all 0.2s;
}

.card-body .form-select:hover,
.card-body .form-select:focus {
  background-color: #fff;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Action Buttons in Table */
.btn-sm-action {
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s;
}

.btn-sm-action:hover {
  transform: translateY(-2px);
}

/* =========================================

/* =========================================
   ATTENDANCE UI 3.0 (Sleek & Airy - Apple Style)
   ========================================= */

/* Root Variables - Soft & Premium */
:root {
  --att-primary: #3b82f6;
  /* Soft Royal Blue */
  --att-success: #10b981;
  /* Soft Emerald */
  --att-warning: #f59e0b;
  /* Soft Amber */
  --att-danger: #ef4444;
  /* Soft Red */
  --att-dark: #111827;
  /* Near Black */
  --att-text: #374151;
  /* Dark Gray */
  --att-text-light: #9ca3af;
  /* Light Gray */
  --att-bg: #f3f4f6;
  /* Light Gray Background */
  --att-surface: #ffffff;
  --att-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --att-shadow-hover:
    0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

/* Page Background */
.attendance-page {
  background-color: var(--att-bg);
}

/* 1. FILTER BAR: Transparent & Floating */
.filter-card {
  background: transparent !important;
  /* Make transparent to sit on gray bg */
  border: none !important;
  box-shadow: none !important;
  /* No shadow on the container itself */
  padding: 0 !important;
}

.filter-card .card-body {
  padding: 0 !important;
  background: transparent;
}

/* Inputs as white pills */
.form-select-premium,
.form-control {
  background-color: var(--att-surface);
  border: 1px solid transparent;
  border-radius: 12px;
  /* Soft rounding */
  padding: 12px 16px;
  font-weight: 500;
  color: var(--att-text);
  font-size: 14px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  /* Subtle depth */
}

.form-select-premium:hover,
.form-control:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.form-select-premium:focus,
.form-control:focus {
  background-color: #fff;
  border-color: var(--att-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  /* Soft Blue Glow */
  outline: none;
}

/* Buttons */
.btn-premium {
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-premium-primary {
  background: var(--att-primary);
  color: white !important;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.btn-premium-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px -1px rgba(59, 130, 246, 0.4);
}

/* 2. STATS CARDS: Clean White Cards */
.stats-card-premium {
  background: var(--att-surface);
  border-radius: 20px;
  /* High radius */
  padding: 24px;
  height: 100%;
  position: relative;
  border: 1px solid rgba(229, 231, 235, 0.5);
  /* Very faint border */
  box-shadow: var(--att-shadow);
  display: flex;
  flex-direction: row-reverse;
  /* Horizontal flipped layout */
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.stats-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: var(--att-shadow-hover);
  border-color: rgba(59, 130, 246, 0.2);
}

/* Labels on Left */
.stats-card-premium>div:first-child {
  text-align: left;
}

.stats-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--att-text-light);
  /* Muted label */
  margin-bottom: 4px;
  display: block;
  letter-spacing: 0.5px;
}

.stats-card-premium h2 {
  font-size: 36px;
  font-weight: 800;
  /* Extra bold number */
  margin: 0;
  line-height: 1;
  color: var(--att-dark);
  /* Dark number */
  letter-spacing: -1px;
}

/* Icons on Right in colored circle */
.stats-icon-bg {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  /* Squircle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Subtle Color Accents */
.stats-blue .stats-icon-bg {
  background: #eff6ff;
  color: var(--att-primary);
}

.stats-blue h2 {
  color: var(--att-primary);
}

.stats-green .stats-icon-bg {
  background: #ecfdf5;
  color: var(--att-success);
}

.stats-green h2 {
  color: var(--att-success);
}

.stats-red .stats-icon-bg {
  background: #fef2f2;
  color: var(--att-danger);
}

.stats-red h2 {
  color: var(--att-danger);
}

.stats-yellow .stats-icon-bg {
  background: #fffbeb;
  color: var(--att-warning);
}

.stats-yellow h2 {
  color: var(--att-warning);
}

/* 3. TABLE: Modern List Style */
.attendance-table-container {
  background: var(--att-surface);
  border-radius: 24px;
  padding: 0;
  /* Flush to edges */
  box-shadow: var(--att-shadow);
  border: 1px solid rgba(229, 231, 235, 0.5);
  overflow: hidden;
}

.premium-table {
  width: 100%;
  border-collapse: collapse;
}

.premium-table thead th {
  background: #f9fafb;
  /* Very light gray header */
  text-transform: uppercase;
  font-size: 11px;
  color: var(--att-text-light);
  font-weight: 700;
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
  letter-spacing: 1px;
}

.premium-table tbody tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid #f3f4f6;
}

.premium-table tbody tr:last-child {
  border-bottom: none;
}

.premium-table tbody tr:hover {
  background-color: #f9fafb;
  /* Subtle hover */
}

.premium-table td {
  padding: 20px 24px;
  vertical-align: middle;
  color: var(--att-text);
  font-size: 14px;
  font-weight: 500;
}

/* User Info */
.user-cell {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-cell img {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  /* White border ring */
}

.user-info h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--att-dark);
}

.user-info span {
  font-size: 12px;
  color: var(--att-text-light);
  font-weight: 500;
}

/* Status Badges - Outline Style */
.status-pill {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  /* Outline style foundation */
}

.status-late {
  background: #fff;
  border-color: #fee2e2;
  color: #ef4444;
  box-shadow: 0 1px 2px rgba(239, 68, 68, 0.05);
}

.status-present {
  background: #fff;
  border-color: #d1fae5;
  color: #10b981;
  box-shadow: 0 1px 2px rgba(16, 185, 129, 0.05);
}

/* Actions */
.action-btn-group {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.btn-icon-premium {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--att-text-light);
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-icon-premium:hover {
  border-color: var(--att-primary);
  color: var(--att-primary);
  background: #eff6ff;
  transform: translateY(-1px);
}

.btn-icon-delete:hover {
  border-color: var(--att-danger);
  color: var(--att-danger);
  background: #fef2f2;
}

/* 4. DEPARTMENT METRICS */
.card h5.fw-bold {
  color: var(--att-dark);
  letter-spacing: -0.5px;
}

.progress {
  background-color: #f3f4f6;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.d-flex .text-muted {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 11px;
}

/* White Button */
.btn-white {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  color: #374151;
  transition: all 0.2s;
}

.btn-white:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
  color: #111827;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Custom Export Buttons */
.btn-custom-excel {
  background-color: #107c41;
  border-color: #107c41;
  color: #fff;
}

.btn-custom-excel:hover {
  background-color: #0c5e31;
  border-color: #0c5e31;
}

.btn-custom-pdf {
  background-color: #ef4444;
  border-color: #ef4444;
  color: #fff;
}

.btn-custom-pdf:hover {
  background-color: #dc2626;
  border-color: #dc2626;
}

.btn-custom-print {
  background-color: #64748b;
  border-color: #64748b;
  color: #fff;
}

.btn-custom-print:hover {
  background-color: #475569;
  border-color: #475569;
}

/* Fix for Modal Inputs Cut-off */
.form-control.form-control-lg,
.form-select.form-select-lg {
  height: auto !important;
  min-height: 48px;
  padding: 10px 16px;
}

textarea.form-control {
  height: auto !important;
}

/* Custom Dropdown Styling to match UI */
.custom-dropdown-header {
  background-color: #005c5c;
  color: #ffffff;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.custom-dropdown-options {
  padding: 0 !important;
  /* Override existing */
  border: 1px solid #005c5c;
  overflow: hidden;
}

.custom-option {
  padding: 12px 16px;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
  transition: background 0.2s;
}

.custom-option:last-child {
  border-bottom: none;
}

.custom-option:hover {
  background-color: #f9fafb;
  color: #005c5c;
}

/* Ultra-Premium Employee Details Design System */
.profile-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.profile-card-header {
  height: 100px;
  background: linear-gradient(80deg, #045555 0%, #0cc9c9 100%);
  position: relative;
}

.profile-avatar-container {
  margin-top: -50px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.profile-avatar-ultra {
  width: 100px;
  height: 100px;
  background: #fff;
  color: #005c5c;
  font-size: 40px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  /* Dynamic squircle */
  margin: 0 auto 15px;
  border: 4px solid #fff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.profile-main-meta {
  text-align: center;
  padding: 0 20px;
}

.profile-name-ultra {
  font-size: 22px;
  font-weight: 800;
  color: #111818;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.profile-id-badge {
  font-size: 13px;
  background: #f3f4f6;
  color: #6b7280;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
}

.profile-tag-stack {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.tag-premium {
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-blue {
  background: #eff6ff;
  color: #3b82f6;
}

.tag-green {
  background: #ecfdf5;
  color: #10b981;
}

.profile-info-grid-sidebar {
  padding: 0 20px 30px;
}

.info-pod {
  background: #f9fafb;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.2s;
}

.info-pod:hover {
  background: #fff;
  border-color: #005c5c40;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pod-icon {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #005c5c;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.pod-label {
  font-size: 10px;
  color: #9ca3af;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}

.pod-value {
  font-size: 13px;
  color: #111827;
  font-weight: 600;
  display: block;
}

/* Stats Architecture */
.stat-box-modern {
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f3f4f6;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.stat-box-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.stat-box-modern.border-blue {
  border-bottom: 4px solid #3b82f6;
}

.stat-box-modern.border-green {
  border-bottom: 4px solid #10b981;
}

.stat-box-modern.border-orange {
  border-bottom: 4px solid #f59e0b;
}

.stat-box-modern.border-red {
  border-bottom: 4px solid #ef4444;
}

.stat-box-modern.border-purple {
  border-bottom: 4px solid #8b5cf6;
}

.stat-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.icon-bg-p {
  background: #effff6;
  color: #10b981;
}

.icon-bg-o {
  background: #fff7ed;
  color: #f59e0b;
}

.icon-bg-b {
  background: #eff6ff;
  color: #3b82f6;
}

.icon-bg-r {
  background: #fef2f2;
  color: #ef4444;
}

.icon-bg-v {
  background: #8b5cf6;
  color: #fff;
}

.stat-num {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}

.stat-desc {
  font-size: 11px;
  color: #6b7280;
  font-weight: 500;
  margin-top: 2px;
  margin-bottom: 0;
}

.text-red-important {
  color: #ef4444 !important;
}

/* Tabs Navigation Premium */
.detail-view-container {
  background: #fff;
  border-radius: 20px;
  margin-top: 24px;
  padding: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.modern-tabs-nav {
  display: flex;
  background: #f3f4f6;
  border-radius: 14px;
  padding: 5px;
  margin-bottom: 25px;
}

.nav-pill-modern {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #6b7280;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.nav-pill-modern.active {
  background: #fff;
  color: #005c5c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.detail-content-area {
  padding: 0 15px 15px;
}

.info-grid-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.info-card-p {
  padding: 6px 15px;
  background: #f9fafb;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.field-lbl {
  font-size: 10px;
  color: #9ca3af;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 3px;
  display: block;
}

.field-val {
  font-size: 13px;
  color: #111827;
  font-weight: 600;
  display: block;
}

/* Table Excellence */
.table-p-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
}

.table-premium thead th {
  background: #f9fafb;
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
}

.table-premium tbody td {
  padding: 16px 20px;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}

.status-p-indicator {
  padding: 4px 12px;
  background: #fef2f2;
  color: #ef4444;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
}

/* Footer Actions */
.action-stack-modern {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.btn-m-action {
  height: 40px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  color: #fff;
  transition: all 0.2s;
}

.btn-m-action:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.1);
}

.bg-gray-m {
  background: #94a3b8;
}

.bg-orange-m {
  background: #f59e0b;
}

.bg-blue-m {
  background: #3b82f6;
}

.bg-purple-m {
  background: #a855f7;
}

/* Premium Modal Styling */
.modal-premium .modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.modal-premium .modal-header {
  background: #fff;
  border-bottom: 1px solid #f3f4fb;
  padding: 20px 30px;
}

.modal-premium .modal-title {
  font-weight: 800;
  color: #111827;
  font-size: 20px;
}

.modal-premium .modal-body {
  padding: 30px;
}

.modal-premium .form-label {
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 8px;
}

.modal-premium .form-label span {
  color: #ef4444;
  margin-left: 4px;
}

.modal-premium .form-control,
.modal-premium .form-select {
  border-radius: 30px;
  border: 1px solid #e5e7eb;
  padding: 10px 18px;
  font-size: 14px;
  color: #111827;
  background-color: #f9fafb;
  transition: all 0.2s;
  height: 34px;
  line-height: 1.5;
}

.modal-premium .form-control:focus,
.modal-premium .form-select:focus {
  border-color: #008080;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.1);
  outline: none;
}

.modal-premium textarea.form-control {
  min-height: 100px;
  height: auto;
  border-radius: 20px;
}

.modal-premium .form-check-input {
  width: 1.25em;
  height: 1.25em;
  border-radius: 6px;
  cursor: pointer;
}

.modal-premium .form-check-input:checked {
  background-color: #008080;
  border-color: #008080;
}

.modal-premium .form-check-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  padding-left: 8px;
}

.modal-premium .modal-footer {
  background: #f9fafb;
  border-top: 1px solid #f3f4fb;
  padding: 20px 30px;
}

.btn-premium-save {
  background: #008080;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-premium-save:hover {
  background: #006666;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 128, 128, 0.2);
  color: #fff;
}

.btn-premium-cancel {
  background: #fff;
  color: #6b7280;
  border: 1px solid #e5e7eb;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-premium-cancel:hover {
  background: #f9fafb;
  color: #374151;
}

.btn-primary1 {
  color: #2e7d32;
}

/* Modal Avatar Styles - from employee-details.html */
.modal-avatar-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.modal-avatar-preview {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: #e0e7ff;
  color: #6366f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.modal-avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-avatar-upload-btn {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 32px;
  height: 32px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid #fff;
  z-index: 10;
}

.modal-avatar-upload-btn:hover {
  background: #000;
}

/* Override Bootstrap Default Active Button Styles */
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: unset !important;
  background-color: unset !important;
  border-color: unset !important;
}