/* ==========================================================================
   Safar Accommodation - Stylesheet
   Color Scheme: Brown #7B5B2A | Gold #c8a951 | Bg #f5f5f0 | Text #333
   ========================================================================== */

/* --- 0. Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; -webkit-text-size-adjust: 100%; }
body { font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; color: #333; background: #f5f5f0; line-height: 1.5; min-height: 100vh; }
a { color: #7B5B2A; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
h1, h2, h3, h4 { color: #222; line-height: 1.25; margin-bottom: .5rem; }
h1 { font-size: 1.6rem; } h2 { font-size: 1.35rem; } h3 { font-size: 1.15rem; }

/* --- 1. Login Page --- */
.login-wrapper { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: linear-gradient(135deg, #7B5B2A 0%, #5C4220 50%, #7B5B2A 100%); padding: 1rem; }
.login-card { background: #fff; border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,.25); width: 100%; max-width: 400px; padding: 2.5rem 2rem; }
.login-card .logo-area { text-align: center; margin-bottom: 1.75rem; }
.login-card .logo-area h1 { color: #7B5B2A; font-size: 1.5rem; margin-top: .5rem; }
.login-card .logo-area .subtitle { color: #888; font-size: .85rem; }
.login-card .form-group { margin-bottom: 1.15rem; }
.login-card label { display: block; font-size: .85rem; font-weight: 600; color: #555; margin-bottom: .3rem; }
.login-card input[type="text"],
.login-card input[type="password"] { width: 100%; padding: .65rem .85rem; border: 1px solid #ccc; border-radius: 6px; font-size: .95rem; transition: border-color .2s; }
.login-card input:focus { outline: none; border-color: #7B5B2A; box-shadow: 0 0 0 3px rgba(123,91,42,.15); }
.btn-login { width: 100%; padding: .75rem; background: #7B5B2A; color: #fff; border: none; border-radius: 6px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background .2s; }
.btn-login:hover { background: #5C4220; }

/* --- 2. Layout --- */
body { display: flex; }
.sidebar { width: 220px; background: #2a2118; color: #d4c5a9; display: flex; flex-direction: column; min-height: 100vh; position: fixed; left: 0; top: 0; z-index: 100; transition: transform .3s; }
.sidebar-logo { padding: 1.25rem 1rem .75rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.sidebar-logo h2 { color: #fff; font-size: 1.2rem; margin: 0; }
.app-subtitle { font-size: .72rem; color: #fff; text-transform: uppercase; letter-spacing: .08em; }
.sidebar nav { flex: 1; padding: .75rem 0; }
.sidebar nav a { display: block; padding: .6rem 1.15rem; color: #bba87a; font-size: .88rem; transition: all .15s; border-left: 3px solid transparent; }
.sidebar nav a:hover { background: rgba(255,255,255,.05); color: #fff; text-decoration: none; }
.sidebar nav a.active { background: rgba(200,169,81,.12); color: #c8a951; border-left-color: #c8a951; font-weight: 600; }
.sidebar-footer { padding: .75rem 1rem; border-top: 1px solid rgba(255,255,255,.08); }
.sidebar-footer a { display: block; text-align: center; padding: .4rem; color: #a89272; font-size: .8rem; border: 1px solid rgba(168,146,114,.3); border-radius: 5px; }
.sidebar-footer a:hover { background: rgba(255,255,255,.05); color: #fff; text-decoration: none; }
.content { flex: 1; margin-left: 220px; padding: 1.5rem; min-height: 100vh; }
.sidebar-toggle { display: none; position: fixed; top: .75rem; left: .75rem; z-index: 200; background: #7B5B2A; color: #fff; border: none; border-radius: 6px; padding: .4rem .6rem; font-size: 1.2rem; cursor: pointer; }
.sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 90; }

@media (max-width: 768px) {
    .sidebar { transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); }
    .sidebar-toggle { display: block; }
    .sidebar-overlay.open { display: block; }
    .content { margin-left: 0; padding: 1rem; padding-top: 3rem; }
}

/* --- 3. Common Components --- */
.flash { padding: .75rem 1rem; border-radius: 6px; margin-bottom: 1rem; font-size: .88rem; }
.flash-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.flash-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.flash-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }

.btn { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem 1rem; border: 1px solid #ccc; border-radius: 6px; font-size: .85rem; cursor: pointer; background: #fff; color: #333; transition: all .15s; text-decoration: none; }
.btn:hover { background: #f5f5f0; text-decoration: none; }
.btn-primary { background: #7B5B2A; color: #fff; border-color: #7B5B2A; }
.btn-primary:hover { background: #5C4220; }
.btn-active { background: #7B5B2A; color: #fff; border-color: #7B5B2A; }
.btn-danger { color: #dc2626; border-color: #fecaca; }
.btn-danger:hover { background: #fef2f2; }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1da851; text-decoration: none; }
.btn-icon { background: none; border: 1px solid #e0d6c2; border-radius: 5px; padding: .35rem .45rem; cursor: pointer; color: #7B5B2A; transition: all .15s; display: inline-flex; align-items: center; }
.btn-icon:hover { background: #f5efe4; }
.btn-icon.btn-danger { color: #dc2626; border-color: #fecaca; }
.btn-icon.btn-danger:hover { background: #fef2f2; }

.badge { display: inline-block; padding: .15rem .5rem; border-radius: 4px; font-size: .72rem; font-weight: 600; }
.badge-green { background: #ecfdf5; color: #065f46; }
.badge-gold { background: #fef3c7; color: #92400e; }
.badge-red { background: #fef2f2; color: #991b1b; }
.badge-gray { background: #f3f4f6; color: #6b7280; }

.form-control { width: 100%; padding: .55rem .75rem; border: 1px solid #d1d5db; border-radius: 6px; font-size: .9rem; transition: border-color .2s; }
.form-control:focus { outline: none; border-color: #7B5B2A; box-shadow: 0 0 0 3px rgba(123,91,42,.12); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: #555; margin-bottom: .3rem; }
.form-row { display: flex; gap: 1rem; }
.form-row .form-group { flex: 1; }

select.form-control { appearance: auto; }

/* --- 4. Cards & Tables --- */
.card { background: #fff; border-radius: 8px; border: 1px solid #e4e0d6; overflow: hidden; }
.card-header { padding: .75rem 1.15rem; border-bottom: 1px solid #f0ede6; display: flex; justify-content: space-between; align-items: center; }
.card-header h3 { margin: 0; font-size: 1rem; }
.card-body { padding: 1rem 1.15rem; }
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.data-table th { padding: .6rem .65rem; text-align: left; background: #faf8f4; color: #7B5B2A; font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; border-bottom: 2px solid #e4d5b8; white-space: nowrap; }
.data-table td { padding: .55rem .65rem; border-bottom: 1px solid #f0ede6; }
.data-table tbody tr:hover { background: #faf8f4; }
.data-table .row-complete { border-left: 3px solid #10b981; }
.data-table .row-partial { border-left: 3px solid #f59e0b; }
.data-table .row-empty { border-left: 3px solid #ef4444; }

.guest-link { color: #7B5B2A; font-weight: 600; }
.guest-link:hover { color: #5C4220; }

/* --- 5. Page Layout --- */
.page-view { max-width: 1200px; }
.page-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; flex-wrap: wrap; gap: .75rem; }
.page-header h1 { margin: 0; }
.page-subtitle { color: #888; font-size: .85rem; margin: 0; }
.page-empty { text-align: center; padding: 3rem; color: #888; }

/* --- 6. Stats --- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .75rem; }
.stat-card { background: #fff; border-radius: 8px; padding: 1rem 1.15rem; border: 1px solid #e4e0d6; }
.stat-card.accent-brown { border-top: 3px solid #7B5B2A; }
.stat-card.accent-green { border-top: 3px solid #10b981; }
.stat-card.accent-gold { border-top: 3px solid #c8a951; }
.stat-card.accent-red { border-top: 3px solid #ef4444; }
.stat-label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: #888; margin-bottom: .25rem; }
.stat-value { font-size: 1.8rem; font-weight: 700; color: #3D2E1A; }
.stat-sub { font-size: .75rem; color: #999; margin-top: .15rem; }
.progress-bar { height: 8px; background: #f0ede6; border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, #7B5B2A, #c8a951); border-radius: 4px; transition: width .5s; }

/* --- 7. Filter Bar --- */
.filter-bar { margin-bottom: 1rem; display: flex; flex-direction: column; gap: .75rem; }
.search-form { display: flex; gap: .5rem; flex-wrap: wrap; }
.search-input { max-width: 400px; }
.filter-buttons { display: flex; gap: .35rem; flex-wrap: wrap; }

/* --- 8. Modal --- */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 500; justify-content: center; align-items: center; padding: 1rem; }
.modal { background: #fff; border-radius: 10px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,.3); max-height: 90vh; overflow-y: auto; }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; border-bottom: 1px solid #f0ede6; }
.modal-header h2 { margin: 0; font-size: 1.15rem; }
.modal-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: #999; padding: .25rem; }
.modal-close:hover { color: #333; }
.modal-body { padding: 1.25rem; }

/* --- 9. Invite Card --- */
.invite-card-wrapper { display: flex; justify-content: center; padding: 1rem 0; }
.invite-card { width: 480px; max-width: 100%; background: #fff; border-radius: 12px; border: 2px solid #c8a951; box-shadow: 0 4px 20px rgba(123,91,42,.15); overflow: hidden; }
.invite-header { background: linear-gradient(135deg, #7B5B2A, #5C4220); color: #fff; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.invite-header h2 { margin: 0; font-size: 1.1rem; color: #fff; }
.invite-sr { background: rgba(255,255,255,.2); padding: .25rem .75rem; border-radius: 20px; font-size: .8rem; }
.invite-name { text-align: center; padding: 1.25rem 1.5rem .75rem; font-size: 1.3rem; font-weight: 700; color: #3D2E1A; }
.invite-section { padding: .4rem 1.5rem; }
.invite-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: #999; font-weight: 600; margin-bottom: .1rem; }
.invite-value { font-size: .95rem; color: #333; font-weight: 500; }
.invite-grid { display: grid; grid-template-columns: 1fr 1fr; }
.invite-divider { height: 1px; background: #e4d5b8; margin: .75rem 1.5rem; }
.invite-footer { text-align: center; padding: .75rem; background: #faf8f4; color: #7B5B2A; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; border-top: 1px solid #e4d5b8; }

/* --- 10. Invite Navigation --- */
.invite-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.25rem; padding: .75rem 0; }

/* --- 11. Responsive --- */
@media (max-width: 768px) {
    .page-header { flex-direction: column; }
    .form-row { flex-direction: column; gap: 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .invite-card { width: 100%; }
    .invite-grid { grid-template-columns: 1fr; }
    .search-form { flex-direction: column; }
    .search-input { max-width: 100%; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
}

/* --- 12. Send Invite Module (Mobile-First) --- */
.send-invite-view { max-width: 520px; margin: 0 auto; padding: 0 .5rem; }
.si-header { text-align: center; margin-bottom: 1.25rem; }
.si-header h1 { margin: 0; font-size: 1.4rem; }

.si-search-wrap { position: relative; margin-bottom: 1rem; }
.si-search {
    width: 100%; padding: 1rem 1.15rem; border: 2px solid #c8a951; border-radius: 12px;
    font-size: 1.05rem; background: #fff; outline: none; transition: border-color .2s;
    box-shadow: 0 2px 12px rgba(123,91,42,.1);
}
.si-search:focus { border-color: #7B5B2A; box-shadow: 0 2px 16px rgba(123,91,42,.2); }
.si-search::placeholder { color: #aaa; }

.si-dropdown {
    display: none; position: absolute; left: 0; right: 0; top: 100%; margin-top: 4px;
    background: #fff; border: 1px solid #e4d5b8; border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.15); max-height: 60vh; overflow-y: auto; z-index: 50;
}
.si-dd-item {
    padding: .85rem 1rem; cursor: pointer; border-bottom: 1px solid #f5f2ed;
    transition: background .1s; -webkit-tap-highlight-color: rgba(200,169,81,.15);
}
.si-dd-item:last-child { border-bottom: none; }
.si-dd-item:hover, .si-dd-item:active { background: #faf6ee; }
.si-dd-name { font-weight: 600; color: #333; font-size: .95rem; }
.si-dd-sr { display: inline-block; background: #f5efe4; color: #7B5B2A; font-size: .7rem; font-weight: 700; padding: .1rem .4rem; border-radius: 3px; margin-right: .3rem; min-width: 28px; text-align: center; }
.si-dd-sub { font-size: .78rem; color: #888; margin-top: .15rem; }
.si-dd-sent { display: inline-block; font-size: .65rem; font-weight: 700; background: #ecfdf5; color: #065f46; padding: .1rem .4rem; border-radius: 3px; margin-left: .3rem; vertical-align: middle; }
.si-dd-notsent { display: inline-block; font-size: .65rem; font-weight: 700; background: #fef2f2; color: #991b1b; padding: .1rem .4rem; border-radius: 3px; margin-left: .3rem; vertical-align: middle; }
.si-dd-empty { padding: 1rem; text-align: center; color: #999; font-size: .9rem; }

.si-card-wrap { display: flex; justify-content: center; margin-bottom: 1.25rem; }
.si-card-wrap .invite-card { width: 100%; }

.si-actions { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1rem; }
.si-btn {
    display: flex; align-items: center; justify-content: center; gap: .75rem;
    padding: 1rem; border: none; border-radius: 12px; font-size: 1.05rem; font-weight: 600;
    cursor: pointer; transition: all .15s; -webkit-tap-highlight-color: transparent;
    min-height: 56px;
}
.si-btn-download { background: #7B5B2A; color: #fff; }
.si-btn-download:hover, .si-btn-download:active { background: #5C4220; }
.si-btn-whatsapp { background: #25D366; color: #fff; }
.si-btn-whatsapp:hover, .si-btn-whatsapp:active { background: #1da851; }

.si-btn-clear {
    display: block; width: 100%; padding: .75rem; background: none; border: 1px solid #d1d5db;
    border-radius: 10px; font-size: .9rem; color: #666; cursor: pointer; text-align: center;
    transition: all .15s; margin-bottom: 2rem;
}
.si-btn-clear:hover { background: #f5f5f0; color: #333; }

/* Filter Tabs */
.si-filter-tabs { display: flex; gap: .35rem; margin-bottom: .75rem; }
.si-tab {
    flex: 1; padding: .6rem .5rem; border: 1px solid #e0d6c2; border-radius: 8px;
    background: #fff; font-size: .82rem; font-weight: 600; color: #888; cursor: pointer;
    text-align: center; transition: all .15s; -webkit-tap-highlight-color: transparent;
}
.si-tab-active { background: #7B5B2A; color: #fff; border-color: #7B5B2A; }
.si-tab-count { display: inline-block; font-size: .7rem; background: rgba(0,0,0,.08); padding: .1rem .4rem; border-radius: 10px; margin-left: .2rem; }
.si-tab-active .si-tab-count { background: rgba(255,255,255,.25); }
.si-tab-count-red { background: #fef2f2; color: #991b1b; }
.si-tab-count-green { background: #ecfdf5; color: #065f46; }
.si-tab-active .si-tab-count-red,
.si-tab-active .si-tab-count-green { background: rgba(255,255,255,.25); color: #fff; }

/* Guest List */
.si-guest-list { background: #fff; border: 1px solid #e4e0d6; border-radius: 10px; overflow: hidden; max-height: 60vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.si-guest-item { border-bottom: 1px solid #f5f2ed; }
.si-guest-item:last-child { border-bottom: none; }
.si-guest-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .75rem 1rem; cursor: pointer; transition: background .1s;
    -webkit-tap-highlight-color: rgba(200,169,81,.12);
}
.si-guest-row:hover, .si-guest-row:active { background: #faf6ee; }
.si-guest-info { display: flex; align-items: center; gap: .6rem; flex: 1; min-width: 0; }
.si-guest-detail { flex: 1; min-width: 0; }
.si-guest-name { font-weight: 600; font-size: .9rem; color: #333; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.si-guest-sub { font-size: .75rem; color: #999; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.si-guest-status { flex-shrink: 0; margin-left: .5rem; }
.si-guest-item.si-sent { border-left: 3px solid #10b981; }
.si-guest-item.si-notsent { border-left: 3px solid #ef4444; }
.si-sent-info { text-align: right; }
.si-sent-time { display: block; font-size: .65rem; color: #999; margin-top: .1rem; }

/* --- 13. Settings --- */
.settings-placeholders { background: #faf8f4; border: 1px solid #e4d5b8; border-radius: 8px; padding: .85rem 1rem; margin-top: .75rem; }
.settings-ph-title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #7B5B2A; margin-bottom: .4rem; }
.settings-ph-grid { display: grid; grid-template-columns: auto 1fr; gap: .25rem .75rem; font-size: .82rem; }
.settings-ph-grid code { background: #fff; border: 1px solid #e0d6c2; padding: .1rem .4rem; border-radius: 4px; font-size: .78rem; color: #7B5B2A; }
.settings-ph-grid span { color: #666; }
.settings-preview { background: #fff; border: 1px solid #e4e0d6; border-radius: 8px; padding: 1rem; font-size: .88rem; white-space: pre-wrap; line-height: 1.6; color: #333; }

/* --- 14. Bulk Editor --- */
.be-view { max-width: 100%; }
.be-toolbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; margin-bottom: .75rem; position: sticky; top: 0; background: #f5f5f0; z-index: 10; padding: .5rem 0; }
.be-toolbar-left { display: flex; align-items: center; gap: .75rem; }
.be-toolbar-right { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.be-title { font-size: 1.3rem; margin: 0; }
.be-count { font-size: .82rem; color: #888; }
.be-changes-count { font-size: .82rem; color: #c8a951; font-weight: 600; }
.be-filter-bar { display: flex; gap: .5rem; margin-bottom: .75rem; flex-wrap: wrap; }

.be-table-wrap { overflow-x: auto; border: 1px solid #e4e0d6; border-radius: 8px; background: #fff; max-height: 75vh; overflow-y: auto; }
.be-table { width: max-content; min-width: 100%; border-collapse: separate; border-spacing: 0; }
.be-table thead { position: sticky; top: 0; z-index: 5; }
.be-table th {
    padding: .5rem .4rem; background: #faf8f4; color: #7B5B2A; font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .04em; border-bottom: 2px solid #e4d5b8;
    white-space: nowrap; text-align: left;
}
.be-th-sticky { position: sticky; z-index: 6; }
.be-th-sr { left: 0; width: 45px; min-width: 45px; background: #faf8f4; }
.be-th-name { left: 45px; min-width: 200px; background: #faf8f4; border-right: 2px solid #e4d5b8; }

.be-row { border-bottom: 1px solid #f0ede6; }
.be-row:hover { background: #fdfcf9; }
.be-row td { padding: 0; border-bottom: 1px solid #f0ede6; }
.be-td-sticky { position: sticky; z-index: 2; background: #fff; }
.be-td-sr { left: 0; width: 45px; min-width: 45px; padding: .4rem .4rem !important; font-size: .78rem; color: #999; font-weight: 600; text-align: center; }
.be-td-name { left: 45px; min-width: 200px; border-right: 2px solid #f0ede6; background: #fff; }
.be-row:hover .be-td-sticky { background: #fdfcf9; }

.be-name-cell { display: flex; align-items: center; gap: .4rem; }
.be-status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-left: .4rem; }
.be-status-complete { background: #10b981; }
.be-status-partial { background: #f59e0b; }
.be-status-empty { background: #ef4444; }

.be-input {
    width: 100%; padding: .45rem .5rem; border: none; background: transparent; font-size: .84rem;
    outline: none; font-family: inherit; min-width: 120px;
}
.be-input:focus { background: #fffff0; box-shadow: inset 0 0 0 2px #c8a951; }
.be-input.be-changed { background: #fefce8; }
.be-input-name { font-weight: 600; min-width: 180px; }

.be-hints { display: flex; gap: 1.25rem; padding: .6rem 0; font-size: .72rem; color: #999; flex-wrap: wrap; }
.be-hints kbd { display: inline-block; background: #f3f4f6; border: 1px solid #d1d5db; border-radius: 3px; padding: .1rem .35rem; font-size: .68rem; font-family: inherit; color: #555; }

/* Save overlay */
.be-save-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 600;
    justify-content: center; align-items: center;
}
.be-save-modal {
    background: #fff; border-radius: 12px; padding: 2rem 2.5rem; text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.be-save-spinner {
    width: 32px; height: 32px; border: 3px solid #f0ede6; border-top-color: #7B5B2A;
    border-radius: 50%; animation: beSpin .8s linear infinite; margin: 0 auto .75rem;
}
@keyframes beSpin { to { transform: rotate(360deg); } }

@media (max-width: 768px) {
    .be-toolbar { flex-direction: column; align-items: flex-start; }
    .be-th-name { min-width: 150px; }
    .be-input-name { min-width: 130px; }
    .be-input { min-width: 100px; }
}

/* Zone badges */
.zone-badge { display:inline-block; font-size:.65rem; font-weight:600; padding:2px 6px; border-radius:3px; margin-left:6px; vertical-align:middle; text-transform:uppercase; letter-spacing:.3px; }
.zone-fatehpura { background:#fff3cd; color:#856404; }
.zone-deengarh { background:#d1ecf1; color:#0c5460; }
.zone-fatehpura_deengarh { background:#e2d5f1; color:#5a3d8a; }
