* { box-sizing: border-box; }
:root {
  --primary: #1c3f8c;
  --primary-dark: #112b63;
  --accent1: #2d61b7;
  --accent2: #5f7fb9;
  --accent3: #3f6f9f;
  --accent4: #476da8;
  --bg: #f5f7fb;
}
body {
  font-family: "Segoe UI", "Sarabun", sans-serif;
  background: var(--bg);
  color: #1e293b;
  margin: 0;
  font-size: 15.5px;
}
.app-shell { display: flex; min-height: 100vh; align-items: stretch; }

.sidebar {
  width: 232px; flex-shrink: 0;
  background: #112b63;
  color: #fff; display: flex; flex-direction: column; padding: 18px 0;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.sidebar-brand {
  display: flex; align-items: center; gap: 12px; padding: 0 18px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.18); margin-bottom: 10px;
}
.sidebar-logo-img {
  height: 42px; background: #fff; border-radius: 6px; padding: 4px 7px;
  flex-shrink: 0; object-fit: contain;
}
.sidebar-brand-text { font-size: 12.5px; font-weight: 700; line-height: 1.4; }
.sidebar nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.sidebar a {
  display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.92);
  text-decoration: none; padding: 11px 18px; font-size: 15px; font-weight: 500;
  border-left: 3px solid transparent; transition: background .15s;
}
.sidebar a .ic { font-size: 17px; width: 20px; text-align: center; flex-shrink: 0; }
.sidebar a:hover { background: rgba(255,255,255,0.12); }
.sidebar a.active { background: #fff; border-left-color: #7ea6e5; color: #112b63; font-weight: 700; }
.sidebar a.active .badge-red { background: #dce8fa; color: #112b63; }
.sidebar-footer { padding-top: 8px; margin-top: 8px; border-top: 1px solid rgba(255,255,255,0.18); }
.sidebar-clock {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85);
  padding: 10px 18px 4px; white-space: nowrap;
}

.sidebar-overlay {
  display: none; position: fixed; inset: 0; background: rgba(15,23,42,0.4); z-index: 40;
}
.sidebar-overlay.open { display: block; }

.main-wrap { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.topbar {
  display: flex; align-items: center; gap: 12px; min-height: 68px; padding: 10px 24px;
  background: #fff; border-bottom: 1px solid #dce4f0;
  color: #173978; position: sticky; top: 0; z-index: 20;
}
.burger-btn {
  display: none; border: none; background: #eaf0fa; color: #173978; width: 38px; height: 38px;
  border-radius: 9px; font-size: 17px; cursor: pointer; flex-shrink: 0;
}
.topbar .user-chip { font-size: 12px; color: #52647f; margin-left: auto; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

@media (max-width: 880px) {
  .sidebar {
    position: fixed; top: 0; left: 0; height: 100vh; z-index: 50;
    transform: translateX(-100%); transition: transform .25s ease; box-shadow: 4px 0 20px rgba(15,23,42,0.25);
  }
  .sidebar.open { transform: translateX(0); }
  .burger-btn { display: block; }
}

.container { max-width: 1440px; margin: 24px auto; padding: 0 24px; width: 100%; }

.btn-back {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 14px;
  padding: 7px 14px; border-radius: 9px; border: 1px solid #e2e8f0; background: #fff;
  color: #475569; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all .15s;
}
.btn-back:hover { background: #f8fafc; border-color: #cbd5e1; color: #1e293b; }

.filter-bar {
  display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 10px; align-items: end;
  margin-bottom: 16px;
}
.filter-bar .field label { display: block; font-size: 13.5px; color: #475569; margin-bottom: 4px; font-weight: 600; }
.filter-bar .field input { margin: 0; }
.filter-bar .filter-actions { display: flex; gap: 8px; }
@media (max-width: 980px) { .filter-bar { grid-template-columns: repeat(2, 1fr); } .filter-bar .filter-actions { grid-column: 1 / -1; } }

.section-card { padding: 0; overflow: hidden; }
.section-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 22px; color: #fff;
}
.section-head h3 { margin: 0; font-size: 16px; color: #fff; display: flex; align-items: center; gap: 9px; }
.section-head .btn-sm { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.35); color: #fff; }
.section-head .btn-sm:hover { background: rgba(255,255,255,0.28); }
.section-body { padding: 18px 22px; }
.section-indigo, .section-teal, .section-amber, .section-green, .section-pink { background: #173978; }

.pagination-controls { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:6px; margin:14px 0; padding:14px 0; border-top:1px solid #f1f5f9; border-bottom:1px solid #f1f5f9; }
.page-btn { display:inline-flex; align-items:center; justify-content:center; min-width:34px; height:34px; padding:0 8px; border:1px solid #e2e8f0; border-radius:8px; background:#fff; color:#334155; font-size:13.5px; text-decoration:none; line-height:1; transition:background .12s,border-color .12s,color .12s; }
.page-btn:hover { background:#f8fafc; border-color:#cbd5e1; }
.page-btn-active, .page-btn-active:hover { background:#1c3f8c; border-color:#1c3f8c; color:#fff; font-weight:600; }
.page-btn-disabled { color:#cbd5e1; pointer-events:none; }
.page-ellipsis { display:inline-flex; align-items:center; justify-content:center; min-width:20px; height:34px; color:#94a3b8; }
.pagination-page { font-size:13.5px; color:#475569; }
.filter-bar-sticky-note { font-size:13.5px; color:#64748b; margin:-6px 0 12px; }

.cal-nav { display:flex; align-items:center; justify-content:center; gap:16px; margin-bottom:14px; }
.cal-nav strong { font-size:15.5px; min-width:170px; text-align:center; color:#1e293b; }
.cal-wrap { border:1px solid #e2e8f0; border-radius:12px; overflow:hidden; }
.cal-grid-head { display:grid; grid-template-columns:repeat(7,1fr); background:#f1f5f9; }
.cal-head-cell { padding:8px 4px; text-align:center; font-weight:700; font-size:12.5px; color:#475569; }
.cal-grid-row { display:grid; grid-template-columns:repeat(7,1fr); border-top:1px solid #e2e8f0; }
.cal-cell { display:flex; flex-direction:column; min-height:92px; padding:0; border-right:1px solid #f1f5f9; position:relative; overflow:hidden; }
.cal-cell:last-child { border-right:none; }
.cal-empty { background:#fafafa; }
.cal-cell-head { display:flex; align-items:center; justify-content:space-between; padding:5px 7px 3px; }
.cal-daynum { font-size:12.5px; font-weight:700; color:#334155; }
.cal-today .cal-daynum { display:inline-flex; align-items:center; justify-content:center; width:20px; height:20px; border-radius:50%; background:#4f46e5; color:#fff; }
.cal-add { font-size:13px; font-weight:700; color:#94a3b8; text-decoration:none; opacity:0; transition:opacity .15s; padding:0 3px; }
.cal-cell:hover .cal-add { opacity:1; }
.cal-add:hover { color:#4f46e5; }
.cal-fill { flex:1; display:flex; flex-direction:column; }
.cal-fill-band {
  flex:1; display:flex; align-items:center; min-height:18px; padding:3px 7px;
  font-size:10.5px; font-weight:700; color:#fff; text-decoration:none;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.cal-fill-band + .cal-fill-band { border-top:1px solid rgba(255,255,255,0.55); }
a.cal-fill-band:hover { filter:brightness(0.92); }
@media (max-width: 760px) {
  .cal-cell { min-height:64px; }
  .cal-fill-band { font-size:9px; padding:2px 5px; }
  .cal-nav strong { min-width:auto; font-size:14px; }
}
@media (max-width: 640px) {
  .container { padding: 0 14px; margin: 14px auto; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .card { padding: 14px 16px; }
  .toolbar { align-items: stretch; }
  .toolbar h2 { font-size: 17px; }
  .form-actions { flex-direction: column; }
  .form-actions .btn { width: 100%; text-align: center; }
  .section-head { padding: 12px 16px; flex-direction: column; align-items: flex-start; gap: 6px; }
  .section-body { padding: 14px 16px; }
  .stat-card { padding: 14px 16px; }
}
.login-logo-img { height: 64px; display: block; margin: 0 auto 16px; }
h1 { font-size: 25px; margin: 0 0 4px; color: #1e293b; }
h2 { font-size: 19px; margin: 0 0 12px; }
.subtitle { color: #475569; font-size: 15px; margin: 0 0 20px; }
.card { background: #fff; border: 1px solid #dce4f0; border-radius: 8px; padding: 18px 22px; margin-bottom: 18px; box-shadow: 0 1px 3px rgba(17,43,99,0.05); overflow-x: auto; }
.grid { display: grid; gap: 14px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: 1.3fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.stat-card { border-radius: 8px; padding: 16px 18px; color: #173978; position: relative; overflow: hidden; border: 1px solid #dce4f0; background: #fff; }
.stat-card .stat-icon { position: absolute; right: 12px; top: 10px; font-size: 28px; opacity: 0.5; }
.stat-label { font-size: 13.5px; margin: 0 0 6px; opacity: 0.92; }
.stat-value { font-size: 28px; font-weight: 700; margin: 0; }
.stat-blue, .stat-green, .stat-amber, .stat-red { background: #fff; }

table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
th, td { text-align: left; padding: 9px 8px; border-bottom: 1px solid #eef2f6; }
th { color: #475569; font-weight: 600; font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.02em; }
tr:hover td { background: #f8fafc; }
.badge { padding: 3px 11px; border-radius: 20px; font-size: 13px; display: inline-block; font-weight: 600; }
.badge-green { background: #dcfce7; color: #166534; }
.badge-amber { background: #fef3c7; color: #92400e; }
.badge-red { background: #fee2e2; color: #991b1b; }
.badge-gray { background: #e2e8f0; color: #475569; }
.badge-blue { background: #e0e7ff; color: #3730a3; }

.btn {
  display: inline-block; padding: 9px 18px; border-radius: 10px; border: 1px solid #e2e8f0;
  background: #fff; color: #334155; text-decoration: none; font-size: 14.5px; cursor: pointer; font-weight: 500;
  transition: all .15s;
}
.btn:hover { background: #f8fafc; border-color: #cbd5e1; }
.btn-primary { background: #1c3f8c; border-color: #1c3f8c; color: #fff; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-accent { background: #2d61b7; border-color: #2d61b7; color: #fff; }
.btn-danger { background: #fff; border-color: #fca5a5; color: #b91c1c; }
.btn-sm { padding: 5px 12px; font-size: 13px; }
.btn-icon { margin-right: 6px; }

.settings-menu { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.settings-link-card {
  display: flex; gap: 14px; align-items: flex-start; background: #fff;
  border: 1px solid #e2e8f0; border-radius: 14px; padding: 16px 18px;
  text-decoration: none; color: inherit; box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all .15s;
}
.settings-link-card:hover { border-color: #a5b4fc; box-shadow: 0 4px 10px rgba(79,70,229,0.1); transform: translateY(-1px); }
.settings-link-card .settings-icon { font-size: 26px; line-height: 1; }
.settings-link-card h3 { margin: 0 0 4px; font-size: 16px; color: #1e293b; }
.settings-link-card p { margin: 0; font-size: 14px; color: #475569; line-height: 1.4; }
.settings-section-title { font-size: 13px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.04em; margin: 22px 0 10px; }
.settings-section-title:first-child { margin-top: 0; }
@media (max-width: 720px) { .settings-menu { grid-template-columns: 1fr; } }

input[type=text], input[type=password], input[type=date], input[type=number], input[type=tel],
input[type=file], select, textarea {
  width: 100%; padding: 9px 12px; border-radius: 10px; border: 1px solid #cbd5e1; font-size: 15px;
  font-family: inherit; background: #fff;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: #2d61b7; box-shadow: 0 0 0 3px rgba(45,97,183,0.15); }
label { font-size: 13.5px; color: #475569; font-weight: 600; display: block; margin: 12px 0 4px; }
.flash { padding: 11px 16px; border-radius: 10px; margin-bottom: 16px; font-size: 15px; font-weight: 500; }
.flash-success { background: #dcfce7; color: #166534; }
.flash-error { background: #fee2e2; color: #991b1b; }
.login-wrap { display: flex; align-items: center; justify-content: center; min-height: 90vh; }
.login-box { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 36px; width: 380px; box-shadow: 0 10px 40px rgba(79,70,229,0.12); }
.search-bar { display: flex; gap: 8px; margin-bottom: 16px; }
.search-bar input { flex: 1; }
.toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 8px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: #1c3f8c; color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.owner-row { border: 1px solid #e2e8f0; border-radius: 12px; padding: 12px 16px; margin-bottom: 8px;
  display: flex; justify-content: space-between; align-items: center; }
.owner-row:hover { border-color: #a5b4fc; background: #f8fafc; }
.spec-table td:first-child { color: #475569; width: 35%; font-weight: 600; }
.form-actions { margin-top: 20px; display: flex; gap: 8px; }
.btn-xs { padding: 4px 9px; font-size: 12.5px; }
.action-cell { display: flex; flex-wrap: wrap; gap: 5px; max-width: 260px; }
.employee-actions { position:relative; min-width:38px; display:flex; justify-content:flex-end; }
.employee-action-menu { width:32px; height:30px; display:grid; align-content:center; gap:4px; padding:0 5px; border:0; background:transparent; cursor:pointer; }
.employee-action-menu span { display:block; height:1px; width:22px; background:#173978; }
.employee-action-menu:hover { background:#edf2fa; border-radius:4px; }
.employee-action-panel { display:none; position:absolute; z-index:10; right:0; top:34px; width:230px; flex-wrap:wrap; gap:5px; padding:9px; background:#fff; border:1px solid #d5dfed; border-radius:6px; box-shadow:0 8px 18px rgba(17,43,99,.14); }
.employee-actions.is-open .employee-action-panel { display:flex; }
.form-section-title { font-size: 13.5px; font-weight: 700; color: #1c3f8c; text-transform: uppercase; letter-spacing: .03em; margin: 22px 0 6px; padding-bottom: 6px; border-bottom: 1px solid #e1e9f5; }
.form-section-title:first-child { margin-top: 0; }
.progress-bar-outer { background: #f1f5f9; border-radius: 6px; height: 9px; margin-top: 4px; overflow: hidden; }
.progress-bar-inner { height: 100%; border-radius: 6px; }
.section-title { font-size: 14.5px; font-weight: 700; color: #1c3f8c; margin: 22px 0 4px; padding-bottom: 6px;
  border-bottom: 2px solid #dce8f8; display: flex; align-items: center; gap: 6px; }
.type-icon { font-size: 16px; }
.footer { text-align: center; font-size: 11.5px; color: #94a3b8; padding: 24px 0 12px; }
.device-type-field { display: none; }
.device-type-field.active { display: block; }

@media print {
  .sidebar, .sidebar-overlay, .topbar, .no-print, .footer { display: none !important; }
  body { background: #fff; }
  .card { box-shadow: none; border: 1px solid #ccc; }
}

/* --- ส่วนเพิ่มเติมสำหรับระบบลา/HR --- */
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px dashed #e2e8f0; }
.timeline li:last-child { border-bottom: none; }
.timeline .tl-dot { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; color: #fff; }
.tl-pending { background: #cbd5e1; }
.tl-approved { background: #10b981; }
.tl-rejected { background: #f43f5e; }
.notif-item { padding: 10px 14px; border-radius: 10px; border: 1px solid #e2e8f0; margin-bottom: 8px; }
.notif-unread { background: #eef2ff; border-color: #c7d2fe; }
.notif-bell { position: relative; margin-left: 10px; text-decoration: none; color: #fff; font-size: 16px; }
.notif-count { position: absolute; top: -6px; right: -10px; background: #f43f5e; color: #fff; font-size: 10px; padding: 1px 5px; border-radius: 10px; }
.quota-bar { height: 8px; border-radius: 6px; background: #f1f5f9; overflow: hidden; margin-top: 4px; }
.quota-bar-inner { height: 100%; border-radius: 6px; background: #2d61b7; }

/* Dashboard layout: แยกโทนสีอ่อนต่อบล็อก เน้นสีที่ตัวหนังสือ/หัวข้อแทนพื้นหลัง */
.dashboard-page { max-width: 1240px; }
.dashboard-heading { display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin: 4px 0 22px; }
.dashboard-kicker { margin:0 0 4px; color:#3d5688; font-size:12.5px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.dashboard-heading h2 { margin:0; color:#0f2557; font-size:29px; font-weight:800; }
.dashboard-subtitle { margin:6px 0 0; color:#4c5d7a; font-size:15.5px; }
.dashboard-heading .btn { padding:14px 26px; font-size:16px; font-weight:700; border-radius:10px; }
.dashboard-stats { display:grid; grid-template-columns:repeat(3, 1fr); gap:14px; margin-bottom:14px; }
.dashboard-stat { min-height:130px; padding:20px 22px; border-radius:10px; border-left:6px solid; box-shadow:0 3px 10px rgba(20,30,60,.10); color:#fff; }
.dashboard-stat-label { color:#fff; font-size:14.5px; font-weight:700; }
.dashboard-stat-value { color:#fff; font-size:40px; line-height:1; font-weight:800; margin:12px 0 4px; }
.dashboard-stat-note { color:rgba(255,255,255,.9); font-size:13px; font-weight:500; }
.dashboard-stat:nth-child(1) { background:#c2410c; border-left-color:#7c3906; }
.dashboard-stat:nth-child(2) { background:#1e3a8a; border-left-color:#0c2a63; }
.dashboard-stat:nth-child(3) { background:#0f766e; border-left-color:#0a4f4a; }
.dashboard-grid { display:grid; grid-template-columns:1.12fr .88fr; gap:14px; margin-bottom:14px; }
.dashboard-panel { background:#fff; border:1px solid #dce4f0; border-radius:8px; box-shadow:0 1px 3px rgba(17,43,99,.04); overflow:hidden; }
.dashboard-panel-head { min-height:76px; padding:18px 20px; border-bottom:1px solid #e8edf5; display:flex; justify-content:space-between; align-items:center; gap:12px; }
.dashboard-panel-head h3 { margin:0; color:#0f2557; font-size:19px; font-weight:800; }
.dashboard-panel-head p { margin:5px 0 0; color:#5b6b88; font-size:13.5px; font-weight:500; }
.dashboard-panel-head a { color:#1d4ed8; font-size:13.5px; font-weight:800; text-decoration:none; white-space:nowrap; }
.balance-list { padding:7px 20px 15px; }
.balance-row { padding:12px 0; }
.balance-row + .balance-row { border-top:1px solid #edf1f6; }
.balance-row-top { display:flex; justify-content:space-between; gap:10px; color:#2e3d5c; font-size:15px; font-weight:600; }
.balance-row-top strong { color:#0f2557; font-weight:800; }
.dashboard-page .quota-bar { margin-top:8px; height:8px; background:#eaf0f8; }
.request-list { padding:0 20px; }
.request-row { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:14px 0; border-bottom:1px solid #edf1f6; color:#1a2c52; text-decoration:none; }
.request-row:last-child { border-bottom:0; }
.request-row:hover { color:#173978; }
.request-name { font-size:15px; font-weight:700; }
.request-name small { display:block; margin-top:4px; color:#6a7a99; font-size:12.5px; font-weight:500; }
.dashboard-page .badge { border-radius:4px; padding:5px 9px; font-size:12.5px; font-weight:800; white-space:nowrap; }
.announcement-list { padding:0 20px; }
.announcement-row { display:flex; gap:14px; padding:14px 0; border-bottom:1px solid #edf1f6; color:#2b3c5e; }
.announcement-row:last-child { border-bottom:0; }
.announcement-date { width:46px; min-width:46px; padding-right:12px; border-right:1px solid #e3eaf4; color:#1d4895; font-size:20px; line-height:1; font-weight:800; }
.announcement-date small { display:block; margin-top:4px; color:#6a7a99; font-size:11px; font-weight:600; }
.announcement-row strong { color:#0f2557; font-size:15px; font-weight:700; }
.announcement-row p { margin:5px 0 0; color:#57688a; font-size:13.5px; font-weight:500; white-space:pre-wrap; }
.announcement-content { min-width:0; flex:1; }
.announcement-image { display:block; width:100%; height:auto; margin-top:10px; border:1px solid #dce4f0; border-radius:6px; }
.empty-state { color:#6a7a99; font-size:14px; padding:18px 0; margin:0; }

/* leave-balance-panel: โทนม่วง-คราม (indigo) */
.leave-balance-panel { background:#eef2ff; border-color:#c7cdf7; }
.leave-balance-panel .dashboard-panel-head { border-bottom-color:#c7cdf7; }
.leave-balance-panel .dashboard-panel-head h3 { color:#312e81; }
.leave-balance-panel .dashboard-panel-head p { color:#4338ca; }
.leave-balance-panel .dashboard-panel-head a { color:#3730a3; }
.leave-balance-panel .balance-row + .balance-row { border-top-color:#d7dbf7; }
.leave-balance-panel .balance-row-top { color:#312e81; }
.leave-balance-panel .balance-row-top strong { color:#1e1b4b; }
.leave-balance-panel .quota-bar { background:#d7dbf7; }
.leave-balance-panel .quota-bar-inner { background:#4338ca; }

/* request-panel: โทนเขียวมิ้นท์ */
.request-panel { background:#ecfdf5; border-color:#a7e8cf; }
.request-panel .dashboard-panel-head { border-bottom-color:#a7e8cf; }
.request-panel .dashboard-panel-head h3 { color:#065f46; }
.request-panel .dashboard-panel-head p { color:#0d9668; }
.request-panel .dashboard-panel-head a { color:#047857; }
.request-panel .request-row { border-bottom-color:#c9f0e0; color:#064e3b; }
.request-panel .request-row:hover { color:#065f46; }
.request-panel .request-name small { color:#2f8567; }

/* announcement-panel: โทนเหลืองอำพัน */
.announcement-panel { background:#fffbeb; border-color:#f4d98a; }
.announcement-panel .dashboard-panel-head { border-bottom-color:#f4d98a; }
.announcement-panel .dashboard-panel-head h3 { color:#78350f; }
.announcement-panel .dashboard-panel-head p { color:#a5650f; }
.announcement-panel .dashboard-panel-head a { color:#92400e; }
.announcement-panel .announcement-row { border-bottom-color:#f4d98a; color:#78350f; }
.announcement-panel .announcement-date { color:#9a3412; border-right-color:#eccb75; }
.announcement-panel .announcement-date small { color:#a5650f; }
.announcement-panel .announcement-row strong { color:#78350f; }
.announcement-panel .announcement-row p { color:#92600f; }

@media (max-width: 780px) { .dashboard-stats, .dashboard-grid { grid-template-columns:1fr; } }
@media (max-width: 640px) { .dashboard-heading { align-items:stretch; flex-direction:column; } .dashboard-heading .btn { text-align:center; } .dashboard-heading h2 { font-size:23px; } .dashboard-stat { min-height:auto; } }
