/* =============================================
   PNR x Chubb — Editorial Clean Global Styles
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #D71920;
  --red-dk: #B01018;
  --gold:   #C9A24B;
  --ink:    #0A0A0A;
  --muted:  #999999;
  --border: #E8E0D8;
  --surface:#FAFAF8;

  /* Air Datepicker overrides */
  --adp-font-family: 'Be Vietnam Pro', sans-serif;
  --adp-color: #0A0A0A;
  --adp-color-secondary: #555;
  --adp-accent-color: #D71920;
  --adp-color-current-date: #D71920;
  --adp-cell-background-color-selected: #D71920;
  --adp-cell-background-color-selected-hover: #B01018;
  --adp-cell-background-color-in-range: rgba(215,25,32,0.08);
  --adp-cell-border-radius: 4px;
  --adp-border-radius: 4px;
  --adp-btn-color: #D71920;
  --adp-btn-color-hover: #B01018;
}

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  background: #fff;
  color: #0A0A0A;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* ── Login ───────────────────────────────────── */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAF8;
  border-top: 3px solid #D71920;
}

.login-box {
  background: #fff;
  border: 1px solid #E8E0D8;
  padding: 48px 40px;
  width: 100%;
  max-width: 400px;
}

.login-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}

.login-box h1 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D71920;
  margin-bottom: 6px;
}

.login-box h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1.5px solid #E8E0D8;
  background: transparent;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 15px;
  color: #0A0A0A;
  outline: none;
  transition: border-color 0.2s;
}

.form-control:focus { border-bottom-color: #D71920; }

.btn-login {
  width: 100%;
  padding: 14px;
  background: #0A0A0A;
  color: #fff;
  border: none;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.btn-login:hover { background: #D71920; }

/* ── Air Datepicker ──────────────────────────── */
.air-datepicker {
  --adp-font-family: 'Be Vietnam Pro', sans-serif !important;
  --adp-color: #0A0A0A !important;
  --adp-color-secondary: #555555 !important;
  --adp-accent-color: #D71920 !important;
  --adp-color-current-date: #D71920 !important;
  --adp-cell-background-color-selected: #D71920 !important;
  --adp-cell-background-color-selected-hover: #B01018 !important;
  --adp-cell-background-color-in-range: rgba(215,25,32,0.08) !important;
  --adp-cell-border-radius: 6px !important;
  --adp-border-radius: 12px !important;
  --adp-btn-color: #D71920 !important;
  --adp-btn-color-hover: #B01018 !important;
  --adp-background-color-hover: rgba(215,25,32,0.05) !important;
  --adp-background-color-active: rgba(215,25,32,0.1) !important;

  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15) !important;
  border: 1px solid #E8E0D8 !important;
  overflow: hidden;
}

/* Day names header styling */
.air-datepicker-body--day-names {
  background: #FAFAF8 !important;
  border-bottom: 1px solid #E8E0D8 !important;
  padding: 6px 0 !important;
}

.air-datepicker-body--day-name {
  color: #555555 !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
}

/* Weekend cells styling */
.air-datepicker-cell.-day-.-weekend- {
  color: #D71920 !important;
}

/* Weekend cells styling override for disabled and other month days */
.air-datepicker-cell.-day-.-weekend-.-disabled-,
.air-datepicker-cell.-day-.-weekend-.-other-month- {
  color: #cccccc !important;
}

/* Selected weekend cells styling */
.air-datepicker-cell.-day-.-weekend-.-selected- {
  color: #ffffff !important;
}

/* Hover cells styling */
.air-datepicker-cell.-day-.-focus- {
  background: rgba(215,25,32,0.05) !important;
  color: #D71920 !important;
}

/* Other month days color */
.air-datepicker-cell.-day-.-other-month- {
  color: #cccccc !important;
}

