@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@500;600;700;800;900&display=swap");

:root {
  --primary: #0f172a;
  --primary-soft: #17243a;
  --accent: #bfa068;
  --accent-2: #8a6a31;
  --bg: #f8fafc;
  --card: #ffffff;
  --muted: #64748b;
  --line: #e2e8f0;
  --teal: #243b5a;
  --shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html body.panelChoiceBody {
  min-height: 100vh !important;
  margin: 0 !important;
  display: grid !important;
  place-items: center !important;
  padding: 28px !important;
  color: var(--primary) !important;
  background:
    radial-gradient(circle at 14% 18%, rgba(191, 160, 104, 0.12), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(36, 59, 90, 0.12), transparent 30%),
    linear-gradient(180deg, #f8fafc, #ffffff 58%, #eef4f8) !important;
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, sans-serif !important;
}

html body.panelChoiceBody .panelChoice {
  width: min(920px, calc(100vw - 32px)) !important;
  padding: 30px !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 30px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12) !important;
}

html body.panelChoiceBody .panelLogo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 64px !important;
  height: 64px !important;
  margin-bottom: 22px !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08) !important;
}

html body.panelChoiceBody .panelLogo img {
  width: 46px !important;
  height: 46px !important;
  object-fit: contain !important;
}

html body.panelChoiceBody .kicker {
  margin: 0 0 10px !important;
  color: #b7791f !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

html body.panelChoiceBody h1 {
  max-width: 720px !important;
  margin: 0 !important;
  color: #0f172a !important;
  font-size: clamp(34px, 5vw, 56px) !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
}

html body.panelChoiceBody .panelChoiceGrid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-top: 28px !important;
}

html body.panelChoiceBody .panelChoiceGrid a {
  display: grid !important;
  gap: 10px !important;
  min-height: 144px !important;
  padding: 22px !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, #ffffff, #f8fafc) !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06) !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease !important;
}

html body.panelChoiceBody .panelChoiceGrid a:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(191, 160, 104, 0.55) !important;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1) !important;
}

html body.panelChoiceBody .panelChoiceGrid strong {
  color: #0f172a !important;
  font-size: 22px !important;
  line-height: 1.1 !important;
}

html body.panelChoiceBody .panelChoiceGrid span {
  color: #64748b !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

* {
  box-sizing: border-box;
}

body.panelBody {
  margin: 0 !important;
  min-height: 100vh;
  display: grid !important;
  grid-template-columns: 260px minmax(0, 1fr);
  color: var(--primary);
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 90, 95, 0.08), transparent 28%),
    radial-gradient(circle at 10% 88%, rgba(15, 92, 104, 0.08), transparent 26%),
    var(--bg) !important;
  font-weight: 700;
}

body,
input,
select,
textarea,
button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.sidebar {
  position: sticky !important;
  top: 0;
  width: auto !important;
  height: 100vh;
  padding: 22px 16px !important;
  display: flex !important;
  flex-direction: column;
  gap: 22px;
  color: #e2e8f0;
  background: linear-gradient(180deg, #0b1220, #132239) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

html body.panelBody .sidebar,
html body.panelBody aside.sidebar {
  background: linear-gradient(180deg, #071526, #0f172a 62%, #111827) !important;
}

.panelLogo img {
  width: 132px !important;
  height: auto !important;
  object-fit: contain;
}

html body.panelBody .panelLogo.logoAsset,
html body.panelBody .panelLogo.loginLogo.logoAsset,
html body.panelBody .sidebar .panelLogo.logoAsset,
html body.panelBody .loginGate .panelLogo.logoAsset {
  width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body.panelBody .loginCard .panelLogo.logoAsset {
  display: inline-flex !important;
  width: fit-content !important;
  margin-bottom: 14px !important;
  padding: 10px 12px !important;
  border: 1px solid var(--line) !important;
  border-radius: 18px !important;
  background: var(--primary) !important;
}

html body.panelBody .panelLogo.logoAsset img,
html body.panelBody .panelLogo.loginLogo.logoAsset img,
html body.panelBody .sidebar .panelLogo.logoAsset img {
  width: 132px !important;
  max-width: 132px !important;
  filter: none !important;
}

.sidebar nav {
  display: grid;
  gap: 8px;
}

.sidebar nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 14px;
  color: #cbd5e1 !important;
  background: transparent;
  font-size: 14px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.sidebar nav a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(2px);
}

.agencyStatus {
  margin-top: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.agencyStatus span,
.agencyStatus strong {
  display: block;
}

.agencyStatus span {
  color: #94a3b8;
  font-size: 12px;
}

.agencyStatus strong {
  margin-top: 5px;
  color: #fff;
  font-size: 15px;
}

.panelMain {
  width: min(1220px, calc(100vw - 310px)) !important;
  margin: 0 auto !important;
  padding: 28px 0 54px !important;
}

.panelHeader,
.accountPanel,
.approvalPanel,
.livePanel,
.uploadPanel,
.settingsPanel,
.notificationPanel,
.paymentPanel {
  border: 1px solid var(--line) !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07) !important;
}

.panelHeader {
  padding: 24px !important;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(36, 59, 90, 0.96)) !important;
  color: #fff;
}

.panelHeader h1 {
  max-width: 880px;
  margin: 8px 0 8px !important;
  color: #fff !important;
  font-size: clamp(30px, 3.3vw, 48px) !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
}

.panelSubtext,
.formNote {
  color: var(--muted) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.panelHeader .panelSubtext {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78) !important;
}

.kicker {
  margin: 0 !important;
  color: #fbbf24 !important;
  text-transform: uppercase;
  font-size: 12px !important;
}

.panelStats {
  margin-top: 18px !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px !important;
}

.agencyMode .panelStats {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.panelStats article {
  min-height: 100px;
  padding: 18px !important;
  border: 1px solid var(--line) !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.panelStats span {
  display: block;
  color: var(--muted) !important;
  font-size: 13px !important;
}

.panelStats strong {
  display: block;
  margin-top: 8px;
  color: var(--primary) !important;
  font-size: 30px !important;
  line-height: 1 !important;
}

.accountPanel,
.panelGrid,
.singleApproval {
  margin-top: 18px !important;
}

.accountPanel,
.approvalPanel,
.livePanel,
.uploadPanel {
  padding: 22px !important;
}

.reservationDesk {
  padding: 22px !important;
}

.reservationLayout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(620px, 1.28fr);
  gap: 16px;
  margin-top: 12px;
}

.reservationForm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f8fafc;
}

.reservationForm label:nth-last-of-type(1),
.reservationForm button {
  grid-column: 1 / -1;
}

.reservationForm button {
  min-height: 46px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 850;
}

.reservationBoard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.reservationColumn {
  min-height: 220px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f8fafc;
}

.reservationColumnHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.reservationColumnHead strong {
  color: var(--primary);
  font-size: 14px;
}

.reservationColumnHead span {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: 12px;
}

.reservationCard {
  display: grid;
  gap: 5px;
  margin-top: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.reservationCard strong,
.reservationCard span,
.reservationCard small,
.reservationCard p {
  min-width: 0;
}

.reservationCard span,
.reservationCard small,
.reservationCard p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.reservationCard div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  margin-top: 4px;
}

.reservationCard button {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 30px;
  padding: 0 4px !important;
  border-radius: 999px;
  color: var(--primary);
  background: #e2e8f0 !important;
  font-size: 9.5px !important;
  white-space: nowrap;
}

.reservationColumn[data-status="approved"] .reservationColumnHead span,
.reservationColumn[data-status="approved"] .reservationCard button[data-reservation-status="approved"] {
  color: #fff;
  background: #1e3a5f !important;
}

.reservationColumn[data-status="cancelled"] .reservationColumnHead span,
.reservationColumn[data-status="cancelled"] .reservationCard button[data-reservation-status="cancelled"] {
  color: #fff;
  background: #991b1b !important;
}

.reservationColumn[data-status="noshow"] .reservationColumnHead span,
.reservationColumn[data-status="noshow"] .reservationCard button[data-reservation-status="noshow"] {
  color: #fff;
  background: #92400e !important;
}

.reservationCard button.danger {
  color: #fff !important;
  background: #7f1d1d !important;
}

.panelGrid,
.singleApproval {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
}

.panelSectionHead h2,
.uploadPanel h2 {
  margin: 8px 0 !important;
  color: var(--primary) !important;
  font-size: 24px !important;
  line-height: 1.15 !important;
}

.formGrid,
.agencyAccountForm,
.adminSettingsForm {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px !important;
}

.uploadPanel .formGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.uploadPanel > label {
  display: block;
}

.uploadPanel > label textarea {
  min-height: 74px !important;
}

.uploadPanel #submitListingButton,
.uploadPanel .formNote {
  margin-top: 10px;
}

label {
  color: var(--primary) !important;
  font-size: 13px !important;
}

input,
select,
textarea {
  width: 100% !important;
  min-height: 44px;
  margin-top: 7px;
  padding: 0 13px !important;
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  color: var(--primary) !important;
  background: #f8fafc !important;
  outline: 0;
  font-weight: 650;
  min-width: 0;
  text-overflow: ellipsis;
}

textarea {
  min-height: 92px;
  padding-top: 12px !important;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal) !important;
  background: #fff !important;
}

button {
  border: 0;
  cursor: pointer;
}

.uploadPanel > button,
.agencyAccountForm button,
.adminSettingsForm button,
.buyPlan,
.modalActions button,
.approvalList button,
.liveList button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  font-weight: 800;
}

.planCards {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px !important;
}

.planCards article {
  min-height: 148px;
  padding: 16px !important;
  border: 1px solid var(--line) !important;
  border-radius: 22px !important;
  background: #fff !important;
}

.planCards article.selected {
  color: #fff !important;
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft)) !important;
}

.planCards strong,
.planCards span,
.planCards small {
  display: block;
}

.planCards span {
  margin-top: 10px;
  font-size: 26px;
}

.photoPreview {
  display: grid;
  place-items: center;
  min-height: 88px !important;
  margin: 14px 0;
  border: 1px dashed #cbd5e1 !important;
  border-radius: 18px !important;
  background: #f8fafc !important;
  overflow: hidden;
}

.photoPreview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approvalList,
.liveList,
.agencyAccountList,
.notificationList,
.paymentTable {
  display: grid;
  gap: 12px;
}

.approvalList article,
.liveList article,
.agencyAccountList article,
.notificationList article,
.paymentTable article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.loginGate {
  position: fixed !important;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.72) !important;
  backdrop-filter: blur(16px);
}

.loginGate.hidden {
  display: none !important;
}

.loginCard {
  width: min(520px, 100%);
  padding: 28px !important;
  border: 1px solid var(--line);
  border-radius: 26px !important;
  background: #fff !important;
  box-shadow: var(--shadow);
}

.loginCard h1 {
  margin: 10px 0 18px;
  color: var(--primary);
  font-size: 30px;
  line-height: 1.1;
}

.loginCard button {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.modalBackdrop {
  position: fixed !important;
  inset: 0;
  z-index: 160;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(14px);
}

.modalBackdrop.open,
.modalBackdrop:not([aria-hidden="true"]) {
  display: grid;
}

.modalCard {
  width: min(900px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 24px !important;
  border-radius: 24px !important;
  background: #fff !important;
}

@media (max-width: 1100px) {
  body.panelBody {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative !important;
    height: auto;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
  }

  .sidebar nav {
    display: flex;
    min-width: max-content;
  }

  .agencyStatus {
    display: none;
  }

  .panelMain {
    width: min(100% - 28px, 1220px) !important;
  }

  .panelStats,
  .agencyMode .panelStats,
  .panelGrid,
  .singleApproval,
  .reservationLayout,
  .planCards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .reservationBoard {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .sidebar {
    padding: 14px !important;
  }

  .panelLogo img {
    width: 108px !important;
  }

  .panelHeader h1 {
    font-size: 30px !important;
  }

  .panelStats,
  .agencyMode .panelStats,
  .panelGrid,
  .singleApproval,
  .reservationLayout,
  .reservationForm,
  .reservationBoard,
  .formGrid,
  .agencyAccountForm,
  .adminSettingsForm,
  .planCards {
    grid-template-columns: 1fr !important;
  }
}

/* Final panel cleanup: keep panel colors aligned with the dark footer system. */
html body.panelBody aside.sidebar,
html body.panelBody .sidebar {
  background: linear-gradient(180deg, #071526 0%, #0f172a 62%, #111827 100%) !important;
}

html body.panelBody .panelHeader {
  background: linear-gradient(135deg, #071526 0%, #0f172a 64%, #1e293b 100%) !important;
}

html body.panelBody .agencyStatus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

html body.panelBody .panelLogo.logoAsset,
html body.panelBody .panelLogo.loginLogo.logoAsset,
html body.panelBody .sidebar .panelLogo.logoAsset {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

html body.panelBody .reservationCard div {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 6px !important;
}

html body.panelBody .reservationCard button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 30px !important;
  padding: 0 6px !important;
  border-radius: 999px !important;
  color: #0f172a !important;
  background: #e2e8f0 !important;
  box-shadow: none !important;
  font-size: 10px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

html body.panelBody .reservationColumn[data-status="approved"] .reservationColumnHead span,
html body.panelBody .reservationColumn[data-status="approved"] .reservationCard button[data-reservation-status="approved"] {
  color: #fff !important;
  background: #1e3a5f !important;
}

html body.panelBody .reservationColumn[data-status="cancelled"] .reservationColumnHead span,
html body.panelBody .reservationColumn[data-status="cancelled"] .reservationCard button[data-reservation-status="cancelled"] {
  color: #fff !important;
  background: #991b1b !important;
}

html body.panelBody .reservationColumn[data-status="noshow"] .reservationColumnHead span,
html body.panelBody .reservationColumn[data-status="noshow"] .reservationCard button[data-reservation-status="noshow"] {
  color: #fff !important;
  background: #92400e !important;
}

html body.panelBody .reservationCard button.danger {
  color: #fff !important;
  background: #7f1d1d !important;
}

/* Compact corporate console for listing and reservation operations. */
html body.panelBody .reservationDesk .panelSectionHead,
html body.panelBody .paymentPanel .panelSectionHead,
html body.panelBody .uploadPanel .panelSectionHead {
  display: grid !important;
  grid-template-columns: minmax(220px, 0.45fr) minmax(360px, 0.55fr) !important;
  align-items: end !important;
  gap: 16px !important;
}

html body.panelBody .reservationDesk .panelSectionHead h2,
html body.panelBody .paymentPanel .panelSectionHead h2 {
  margin: 2px 0 0 !important;
}

html body.panelBody .reservationDesk .panelSectionHead .formNote,
html body.panelBody .paymentPanel .panelSectionHead .formNote {
  max-width: 620px;
  justify-self: end;
}

html body.panelBody .uploadPanel {
  display: grid !important;
  grid-template-columns: minmax(220px, 0.22fr) minmax(620px, 0.78fr) !important;
  gap: 16px !important;
  align-items: start !important;
}

html body.panelBody .uploadPanel > .kicker,
html body.panelBody .uploadPanel > h2,
html body.panelBody .uploadPanel > .photoPreview,
html body.panelBody .uploadPanel > label,
html body.panelBody .uploadPanel > button,
html body.panelBody .uploadPanel > .formNote {
  grid-column: auto !important;
}

html body.panelBody .uploadPanel > .kicker,
html body.panelBody .uploadPanel > h2,
html body.panelBody .uploadPanel > .photoPreview,
html body.panelBody .uploadPanel > label,
html body.panelBody .uploadPanel > button,
html body.panelBody .uploadPanel > .formNote {
  grid-column: 1 !important;
}

html body.panelBody .uploadPanel > .formGrid {
  grid-column: 2 !important;
  grid-row: 1 / span 6 !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

html body.panelBody .uploadPanel > h2 {
  font-size: 22px !important;
}

html body.panelBody .uploadPanel .photoPreview {
  margin: 8px 0 !important;
}

html body.panelBody .reservationBoard {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

html body.panelBody .reservationColumn {
  min-height: 210px !important;
}

@media (max-width: 1180px) {
  html body.panelBody .uploadPanel,
  html body.panelBody .reservationDesk .panelSectionHead,
  html body.panelBody .paymentPanel .panelSectionHead {
    grid-template-columns: 1fr !important;
  }

  html body.panelBody .uploadPanel > .formGrid,
  html body.panelBody .uploadPanel > .kicker,
  html body.panelBody .uploadPanel > h2,
  html body.panelBody .uploadPanel > .photoPreview,
  html body.panelBody .uploadPanel > label,
  html body.panelBody .uploadPanel > button,
  html body.panelBody .uploadPanel > .formNote {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  html body.panelBody .uploadPanel > .formGrid,
  html body.panelBody .reservationBoard {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

html body.panelBody main.panelMain section.panelGrid.singleApproval {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  align-items: start !important;
}

html body.panelBody main.panelMain section.panelGrid.singleApproval > .uploadPanel,
html body.panelBody main.panelMain section.panelGrid.singleApproval > .livePanel {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}

html body.panelBody main.panelMain section.panelGrid.singleApproval > .uploadPanel {
  grid-template-columns: minmax(230px, 0.24fr) minmax(720px, 0.76fr) !important;
}

html body.panelBody main.panelMain section.panelGrid.singleApproval > .uploadPanel > button,
html body.panelBody main.panelMain section.panelGrid.singleApproval #submitListingButton {
  color: #fff !important;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
}

html body.panelBody .accountPanel,
html body.panelBody .reservationDesk,
html body.panelBody .panelCard,
html body.panelBody .statCard {
  border-color: #dbe3ef !important;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08) !important;
}

html body.panelBody .reservationForm button,
html body.panelBody .agencyAccountForm button,
html body.panelBody .adminSettingsForm button,
html body.panelBody .planCard button,
html body.panelBody .buyPlan,
html body.panelBody .submitBtn,
html body.panelBody form button[type="submit"] {
  color: #fff !important;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16) !important;
}

html body.panelBody button:disabled,
html body.panelBody .approvalButtons button:disabled,
html body.panelBody #submitListingButton:disabled {
  opacity: .45;
  cursor: not-allowed;
  filter: grayscale(.35);
  box-shadow: none;
}

html body.panelBody .reservationCard button {
  background: #e2e8f0 !important;
  box-shadow: none !important;
}

html body.panelBody .reservationColumn[data-status="approved"] .reservationCard button[data-reservation-status="approved"] {
  color: #fff !important;
  background: #1e3a5f !important;
}

html body.panelBody .reservationColumn[data-status="cancelled"] .reservationCard button[data-reservation-status="cancelled"] {
  color: #fff !important;
  background: #991b1b !important;
}

html body.panelBody .reservationColumn[data-status="noshow"] .reservationCard button[data-reservation-status="noshow"] {
  color: #fff !important;
  background: #92400e !important;
}

html body.panelBody .reservationCard button.danger {
  color: #fff !important;
  background: #7f1d1d !important;
}
