/* =========================================================
   AMERISERV DASHBOARD — DESIGN SYSTEM
   Palette: Operations-console blue/slate with domain accent coding
   Display: Space Grotesk / Body: Inter / Data: IBM Plex Mono
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  /* Surfaces */
  --bg-app: #F4F6F9;
  --bg-surface: #FFFFFF;
  --bg-surface-alt: #F9FAFC;
  --bg-sidebar: #0E1626;
  --bg-sidebar-hover: #17223A;
  --border-soft: #E4E8F0;
  --border-strong: #D3D9E4;

  /* Ink */
  --ink-900: #0F172A;
  --ink-700: #33415C;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --ink-on-dark: #E7ECF7;
  --ink-on-dark-dim: #8996B3;

  /* Brand + domain accents */
  --primary: #3457D5;
  --primary-600: #2941AD;
  --primary-100: #E7ECFC;
  --accent-calls: #3457D5;      /* blue   */
  --accent-requests: #0EA5A0;   /* teal   */
  --accent-appts: #F59E0B;      /* amber  */
  --accent-ai: #7C5CFC;         /* violet */
  --accent-danger: #E23744;
  --accent-danger-bg: #FDEAEC;
  --accent-success: #0EA5A0;
  --accent-success-bg: #E6F7F6;
  --accent-warning: #F59E0B;
  --accent-warning-bg: #FEF3E2;

  /* Type */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Radius / shadow / motion */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.05), 0 1px 1px rgba(15,23,42,0.03);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
  --shadow-lg: 0 12px 32px rgba(15,23,42,0.10), 0 2px 6px rgba(15,23,42,0.05);
  --ease: cubic-bezier(.4,0,.2,1);

  --sidebar-w: 264px;
  --sidebar-w-collapsed: 76px;
  --topbar-h: 68px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

*,*::before,*::after{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font-body);
  background: var(--bg-app);
  color: var(--ink-900);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; color: var(--ink-900); letter-spacing: -0.01em; }
p{ margin:0; }
a{ color: inherit; text-decoration:none; }
button{ font-family: inherit; }
::selection{ background: var(--primary-100); }

:focus-visible{
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Scrollbars */
::-webkit-scrollbar{ width:8px; height:8px; }
::-webkit-scrollbar-track{ background: transparent; }
::-webkit-scrollbar-thumb{ background: var(--border-strong); border-radius: 8px; }

/* =========================================================
   APP SHELL
   ========================================================= */
.app-shell{ display:flex; min-height:100vh; }

.sidebar{
  width: var(--sidebar-w);
  flex-shrink:0;
  background: var(--bg-sidebar);
  color: var(--ink-on-dark);
  display:flex;
  flex-direction:column;
  position:fixed;
  top:0; left:0; bottom:0;
  z-index:40;
  transition: transform .25s var(--ease), width .25s var(--ease);
}
.sidebar-brand{
  display:flex;
  align-items:center;
  gap:12px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sidebar-brand-mark{
  width:36px; height:36px; border-radius:10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-ai) 100%);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; color:#fff; font-size:15px;
  flex-shrink:0;
}
.sidebar-brand-text{ line-height:1.2; }
.sidebar-brand-text strong{ display:block; font-family: var(--font-display); font-size:16px; font-weight:600; }
.sidebar-brand-text span{ font-size:11.5px; color: var(--ink-on-dark-dim); letter-spacing:.04em; text-transform:uppercase; }

.sidebar-nav{ flex:1; padding: 14px 12px; overflow-y:auto; }
.nav-group-label{
  font-size:10.5px; text-transform:uppercase; letter-spacing:.08em;
  color: var(--ink-on-dark-dim); padding: 16px 12px 6px;
  font-weight:600;
}
.nav-item{
  display:flex; align-items:center; gap:12px;
  padding: 10px 12px; margin: 2px 0;
  border-radius: var(--r-sm);
  color: var(--ink-on-dark-dim);
  font-size:14px; font-weight:500;
  position:relative;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav-item svg{ width:18px; height:18px; flex-shrink:0; opacity:.85; }
.nav-item:hover{ background: var(--bg-sidebar-hover); color: var(--ink-on-dark); }
.nav-item.active{ background: var(--bg-sidebar-hover); color:#fff; }
.nav-item.active::before{
  content:''; position:absolute; left:-12px; top:8px; bottom:8px; width:3px;
  border-radius:2px; background: var(--primary);
}
.nav-item .nav-label{ white-space:nowrap; overflow:hidden; }

.sidebar-footer{
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size:11px; color: var(--ink-on-dark-dim);
}
.sidebar-footer strong{ color: var(--ink-on-dark); font-weight:600; }

.sidebar.collapsed{ width: var(--sidebar-w-collapsed); }
.sidebar.collapsed .sidebar-brand-text,
.sidebar.collapsed .nav-label,
.sidebar.collapsed .nav-group-label,
.sidebar.collapsed .sidebar-footer{ display:none; }
.sidebar.collapsed .nav-item{ justify-content:center; }

/* Main column */
.main-col{
  flex:1;
  margin-left: var(--sidebar-w);
  min-height:100vh;
  display:flex;
  flex-direction:column;
  transition: margin-left .25s var(--ease);
}
.app-shell.sidebar-collapsed .main-col{ margin-left: var(--sidebar-w-collapsed); }

.topbar{
  height: var(--topbar-h);
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-soft);
  display:flex; align-items:center; justify-content:space-between;
  padding: 0 28px;
  position:sticky; top:0; z-index:30;
}
.topbar-left{ display:flex; align-items:center; gap:16px; }
.topbar-menu-btn{
  display:none; background:none; border:none; cursor:pointer;
  width:38px; height:38px; border-radius:var(--r-sm); align-items:center; justify-content:center;
  color: var(--ink-700);
}
.topbar-menu-btn:hover{ background: var(--bg-surface-alt); }
.page-title{ font-size:19px; font-weight:600; }
.page-subtitle{ font-size:12.5px; color: var(--ink-500); margin-top:2px; }
.topbar-right{ display:flex; align-items:center; gap:14px; }
.topbar-user{
  display:flex; align-items:center; gap:10px;
  padding:6px 10px 6px 6px; border-radius: 999px;
  border:1px solid var(--border-soft); cursor:pointer;
  transition: background .15s var(--ease);
}
.topbar-user:hover{ background: var(--bg-surface-alt); }
.avatar{
  width:30px; height:30px; border-radius:50%;
  background: var(--primary-100); color: var(--primary-600);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:12.5px; font-family: var(--font-display);
}
.topbar-user-meta{ line-height:1.15; }
.topbar-user-meta strong{ display:block; font-size:13px; font-weight:600; }
.topbar-user-meta span{ font-size:11px; color: var(--ink-500); text-transform:capitalize; }
.logout-btn{
  background:none; border:1px solid var(--border-soft); color: var(--ink-700);
  font-size:13px; font-weight:500; padding:8px 14px; border-radius: var(--r-sm);
  cursor:pointer; transition: all .15s var(--ease); display:flex; align-items:center; gap:6px;
}
.logout-btn:hover{ background: var(--accent-danger-bg); border-color: var(--accent-danger); color: var(--accent-danger); }

.content{ padding: 26px 28px 48px; flex:1; }

.sidebar-scrim{
  display:none; position:fixed; inset:0; background: rgba(15,23,42,0.45); z-index:35;
}

/* =========================================================
   KPI CARDS
   ========================================================= */
.kpi-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.kpi-card{
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 20px 20px 18px;
  box-shadow: var(--shadow-sm);
  position:relative;
  overflow:hidden;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.kpi-card::before{
  content:''; position:absolute; left:0; top:0; bottom:0; width:3px;
  background: var(--kpi-accent, var(--primary));
}
.kpi-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.kpi-top{ display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:14px; }
.kpi-icon{
  width:38px; height:38px; border-radius:10px;
  background: color-mix(in srgb, var(--kpi-accent, var(--primary)) 12%, white);
  color: var(--kpi-accent, var(--primary));
  display:flex; align-items:center; justify-content:center;
}
.kpi-icon svg{ width:19px; height:19px; }
.kpi-trend{
  font-size:12px; font-weight:600; padding:4px 8px; border-radius:999px;
  display:flex; align-items:center; gap:3px;
}
.kpi-trend.up{ color: var(--accent-success); background: var(--accent-success-bg); }
.kpi-trend.down{ color: var(--accent-danger); background: var(--accent-danger-bg); }
.kpi-trend.flat{ color: var(--ink-500); background: var(--bg-surface-alt); }
.kpi-value{
  font-family: var(--font-mono); font-weight:600; font-size:30px;
  color: var(--ink-900); line-height:1; margin-bottom:6px;
}
.kpi-label{ font-size:13.5px; font-weight:600; color: var(--ink-700); }
.kpi-subtitle{ font-size:12px; color: var(--ink-500); margin-top:3px; }

/* =========================================================
   CARD / PANEL
   ========================================================= */
.panel{
  background: var(--bg-surface);
  border:1px solid var(--border-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 20px 22px 22px;
}
.panel-header{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:16px; gap:12px; flex-wrap:wrap;
}
.panel-title{ font-size:15px; font-weight:600; font-family: var(--font-display); }
.panel-sub{ font-size:12px; color: var(--ink-500); margin-top:2px; }

.grid-2{ display:grid; grid-template-columns: 1.4fr 1fr; gap:18px; }
.grid-3{ display:grid; grid-template-columns: repeat(3,1fr); gap:18px; }
.stack{ display:flex; flex-direction:column; gap:18px; }
.chart-wrap{ position:relative; height: 280px; }
.chart-wrap.short{ height:220px; }

/* =========================================================
   FILTER BAR
   ========================================================= */
.filter-bar{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  margin-bottom:22px;
}
.filter-pill{
  padding:8px 16px; border-radius:999px; font-size:13px; font-weight:500;
  border:1px solid var(--border-soft); background: var(--bg-surface); color: var(--ink-700);
  cursor:pointer; transition: all .15s var(--ease);
}
.filter-pill:hover{ border-color: var(--primary); color: var(--primary); }
.filter-pill.active{ background: var(--primary); border-color: var(--primary); color:#fff; }
.filter-daterange{
  margin-left:auto; display:flex; align-items:center; gap:8px;
}
.filter-daterange input[type="date"]{
  border:1px solid var(--border-soft); border-radius: var(--r-sm);
  padding:7px 10px; font-size:13px; font-family: var(--font-body); color: var(--ink-700);
}

/* =========================================================
   TABLE
   ========================================================= */
.table-scroll{ overflow-x:auto; }
table.data-table{ width:100%; border-collapse: collapse; font-size:13.5px; }
.data-table thead th{
  text-align:left; font-size:11.5px; text-transform:uppercase; letter-spacing:.05em;
  color: var(--ink-500); font-weight:600; padding: 10px 14px; border-bottom:1px solid var(--border-soft);
  white-space:nowrap;
}
.data-table tbody td{ padding: 13px 14px; border-bottom:1px solid var(--border-soft); color: var(--ink-700); white-space:nowrap; }
.data-table tbody tr:last-child td{ border-bottom:none; }
.data-table tbody tr{ transition: background .12s var(--ease); }
.data-table tbody tr:hover{ background: var(--bg-surface-alt); }

.badge{
  display:inline-flex; align-items:center; gap:5px;
  padding:4px 10px; border-radius:999px; font-size:12px; font-weight:600;
}
.badge-dot{ width:6px; height:6px; border-radius:50%; background:currentColor; }
.badge.success{ background: var(--accent-success-bg); color: var(--accent-success); }
.badge.warning{ background: var(--accent-warning-bg); color: var(--accent-warning); }
.badge.danger{ background: var(--accent-danger-bg); color: var(--accent-danger); }
.badge.neutral{ background: var(--bg-surface-alt); color: var(--ink-500); }
.badge.info{ background: var(--primary-100); color: var(--primary-600); }

/* =========================================================
   BUTTONS / INPUTS
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 18px; border-radius: var(--r-sm); font-size:14px; font-weight:600;
  cursor:pointer; border:1px solid transparent; transition: all .15s var(--ease);
}
.btn-primary{ background: var(--primary); color:#fff; }
.btn-primary:hover{ background: var(--primary-600); }
.btn-ghost{ background: var(--bg-surface); border-color: var(--border-soft); color: var(--ink-700); }
.btn-ghost:hover{ border-color: var(--primary); color: var(--primary); }
.btn:disabled{ opacity:.6; cursor:not-allowed; }

.field{ margin-bottom:18px; }
.field label{ display:block; font-size:13px; font-weight:600; color: var(--ink-700); margin-bottom:7px; }
.input-wrap{ position:relative; }
.field input[type="text"],
.field input[type="password"],
.field input[type="search"]{
  width:100%; padding:12px 14px; border-radius: var(--r-sm); border:1.5px solid var(--border-soft);
  font-size:14px; font-family: var(--font-body); color: var(--ink-900); background: var(--bg-surface);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus{ outline:none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-100); }
.input-icon-btn{
  position:absolute; right:10px; top:50%; transform:translateY(-50%);
  background:none; border:none; cursor:pointer; color: var(--ink-400); padding:4px;
  display:flex; align-items:center;
}
.input-icon-btn:hover{ color: var(--ink-700); }

/* =========================================================
   LOGIN PAGE
   ========================================================= */
.login-shell{
  min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center;
  background:
    radial-gradient(1100px 620px at 15% -10%, #16223F 0%, transparent 60%),
    radial-gradient(900px 600px at 110% 110%, #1B2A4D 0%, transparent 55%),
    var(--bg-sidebar);
  padding: 24px;
  position:relative;
  overflow-x:hidden;
  overflow-y:auto;
}
.login-shell::before{
  content:''; position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 70%);
}
.login-card{
  width:100%; max-width:400px; background: var(--bg-surface);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: 38px 34px 30px; position:relative; z-index:1;
  animation: cardIn .5s var(--ease);
}
@keyframes cardIn{ from{ opacity:0; transform: translateY(14px); } to{ opacity:1; transform:none; } }
.login-brand{ display:flex; flex-direction:column; align-items:center; margin-bottom:26px; }
.login-brand-mark{
  width:52px; height:52px; border-radius:14px; margin-bottom:14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-ai) 100%);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; color:#fff; font-size:20px;
  box-shadow: 0 8px 20px rgba(52,87,213,0.35);
}
.login-brand h1{ font-size:20px; font-weight:700; }
.login-brand p{ font-size:13px; color: var(--ink-500); margin-top:4px; }
.login-heading{ margin-bottom:22px; text-align:center; }
.login-heading h2{ font-size:22px; font-weight:600; margin-bottom:4px; }
.login-heading span{ font-size:13.5px; color: var(--ink-500); }
.login-row{ display:flex; align-items:center; justify-content:space-between; margin: -8px 0 20px; font-size:13px; }
.checkbox-row{ display:flex; align-items:center; gap:8px; color: var(--ink-700); cursor:pointer; user-select:none; }
.checkbox-row input{ width:15px; height:15px; accent-color: var(--primary); }
.forgot-link{ color: var(--primary); font-weight:600; cursor:pointer; }
.forgot-link:hover{ text-decoration:underline; }
.login-error{
  display:none; align-items:center; gap:8px;
  background: var(--accent-danger-bg); color: var(--accent-danger);
  border:1px solid rgba(226,55,68,0.25);
  padding:11px 14px; border-radius: var(--r-sm); font-size:13px; font-weight:500;
  margin-bottom:18px;
}
.login-error.show{ display:flex; animation: shake .35s var(--ease); }
@keyframes shake{ 0%,100%{ transform: translateX(0);} 25%{ transform: translateX(-5px);} 75%{ transform: translateX(5px);} }
.btn-login{ width:100%; padding:13px; font-size:14.5px; position:relative; }
.spinner{
  width:16px; height:16px; border-radius:50%;
  border:2px solid rgba(255,255,255,0.4); border-top-color:#fff;
  animation: spin .7s linear infinite; display:none;
}
.btn-login.loading .spinner{ display:inline-block; }
.btn-login.loading .btn-login-label{ opacity:.75; }
@keyframes spin{ to{ transform: rotate(360deg); } }
.login-footer{ text-align:center; margin-top:24px; font-size:11.5px; color: var(--ink-on-dark-dim); position:relative; z-index:1; }
.login-footer strong{ color: var(--ink-on-dark); }

/* =========================================================
   FULL-PAGE LOADER
   ========================================================= */
.page-loader{
  position:fixed; inset:0; background: var(--bg-app); z-index:9999;
  display:flex; align-items:center; justify-content:center; flex-direction:column; gap:14px;
}
.page-loader .ring{
  width:34px; height:34px; border-radius:50%; border:3px solid var(--border-soft);
  border-top-color: var(--primary); animation: spin .8s linear infinite;
}
.page-loader span{ font-size:13px; color: var(--ink-500); font-weight:500; }

/* Empty state */
.empty-state{
  padding: 46px 20px; text-align:center; color: var(--ink-500);
}
.empty-state h4{ color: var(--ink-700); font-size:15px; margin-bottom:6px; }
.empty-state p{ font-size:13px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1200px){
  .kpi-grid{ grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3{ grid-template-columns: 1fr; }
}

@media (max-width: 900px){
  .sidebar{ transform: translateX(-100%); width: var(--sidebar-w); }
  .sidebar.mobile-open{ transform: translateX(0); }
  .main-col{ margin-left:0 !important; }
  .topbar-menu-btn{ display:flex; }
  .sidebar-scrim.show{ display:block; }
  .content{ padding: 18px 16px 40px; }
  .page-title{ font-size:17px; }
}

@media (max-width: 560px){
  .kpi-grid{ grid-template-columns: 1fr; }
  .topbar{ padding: 0 14px; }
  .topbar-user-meta{ display:none; }
  .filter-daterange{ margin-left:0; width:100%; }
  .panel{ padding:16px; }
}

.login-logo{
    width:220px;
    max-width:100%;
    height:auto;
    display:block;
    margin:0 auto 15px;
    object-fit:contain;
}

.login-subtitle{
    font-size:14px;
    color:var(--ink-500);
    font-weight:500;
    margin-top:8px;
}

.sidebar-brand{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px 16px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.sidebar-logo{
    width:180px;
    height:auto;
    display:block;
}

/* Status dropdown */

.request-status-select{
    width: 130px;
    padding: 8px 12px;
    border: 1px solid #d7dde8;
    border-radius: 8px;
    background: #fff;
    color: #1f2937;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: .2s;
}

.request-status-select:hover{
    border-color: #2563eb;
}

.request-status-select:focus{
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}

.request-status-select.open{
    background:#fff7e6;
    color:#b45309;
}

.request-status-select.completed{
    background:#ecfdf5;
    color:#15803d;
}

.request-status-select.cancelled{
    background:#fef2f2;
    color:#dc2626;
}

/* ===========================
   Recording Player
=========================== */

.recording-player {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.recording-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  height: 34px;
  padding: 0 12px;

  border: 1px solid #dbe3f0;
  border-radius: 8px;

  background: #ffffff;
  color: #334155;

  font-family: inherit;
  font-size: 12px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.recording-play-btn:hover {
  background: #f6f8ff;
  border-color: #b8c6ef;
  color: #3457d5;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.08);
}

.recording-play-btn:active {
  background: #eef2ff;
  box-shadow: none;
}

.recording-play-btn.playing {
  background: #eef2ff;
  border-color: #aebdf1;
  color: #3457d5;
}

.recording-play-btn.playing:hover {
  background: #e7ecff;
  border-color: #9eafea;
}

.recording-play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 18px;
  height: 18px;

  border-radius: 50%;

  background: #eef2ff;
  color: #3457d5;

  font-size: 9px;
  line-height: 1;
}

.recording-play-btn.playing .recording-play-icon {
  background: #3457d5;
  color: #ffffff;
}

.recording-play-text {
  white-space: nowrap;
}

.recording-time {
  display: none;
}

.recording-unavailable {
  display: inline-flex;
  align-items: center;

  height: 30px;
  padding: 0 10px;

  border-radius: 7px;
  background: #f8fafc;

  color: #94a3b8;
  font-size: 12px;
  font-weight: 500;
}

/* ===========================
   Appointment Status Select
=========================== */

.appointment-status-select {
  min-width: 122px;
  height: 34px;
  padding: 0 30px 0 12px;

  border: 1px solid #dbe3f0;
  border-radius: 8px;

  font-family: inherit;
  font-size: 12px;
  font-weight: 600;

  cursor: pointer;
  outline: none;

  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.appointment-status-select:focus {
  border-color: #9eb1f0;
  box-shadow: 0 0 0 3px rgba(52, 87, 213, 0.1);
}

.appointment-status-select:disabled {
  cursor: wait;
  opacity: 0.65;
}

.appointment-status-select.status-scheduled {
  background: #eef3ff;
  border-color: #c8d5f6;
  color: #3457d5;
}

.appointment-status-select.status-completed {
  background: #ecfdf3;
  border-color: #b7e7c8;
  color: #168447;
}

.appointment-status-select.status-cancelled {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #d63d52;
}