:root {
  --bg:       #f5f2ee;
  --surface:  #fdfbf8;
  --surface2: #f0ece6;
  --border:   #e0d9d0;
  --border2:  #cfc7bb;
  --text:     #1e1a14;
  --text2:    #4a4438;
  --muted:    #8c7f6e;
  --accent:   #1863fa;
  --accent-l: #e8f3f7;
  --accent2:  #e07a3a;
  --accent2-l:#fdf0e6;
  --green:    #2d8a4e;
  --green-l:  #eaf5ee;
  --red:      #c0392b;
  --red-l:    #fcecea;
  --yellow:   #c47c14;
  --yellow-l: #fdf4e3;
  --purple:   #7c52b8;
  --purple-l: #f2edfb;
  --blue:     #2b6cb0;
  --blue-l:   #e8f0fb;
  --teal:     #1a7f7f;
  --teal-l:   #e6f4f4;
  --shadow-sm: 0 1px 3px rgba(30,26,20,0.07), 0 1px 2px rgba(30,26,20,0.04);
  --shadow-md: 0 4px 14px rgba(30,26,20,0.10), 0 2px 4px rgba(30,26,20,0.05);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

/* TOP BAR */
.topbar {
  display: flex; align-items: center;
  padding: 0 20px; height: 54px;
  background: var(--surface);
  border-bottom: 1.5px solid var(--border);
  gap: 18px; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--text); letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.nav-tabs { display: flex; gap: 3px; margin-left: 16px; }
.nav-tab {
  padding: 6px 14px; border-radius: 7px;
  font-size: 13px; font-weight: 500;
  cursor: pointer; border: none;
  background: transparent; color: var(--muted);
  transition: all 0.15s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none; display: inline-flex; align-items: center;
}
.nav-tab:hover { color: var(--text); background: var(--surface2); }
.nav-tab.active { background: var(--accent); color: #fff; font-weight: 600; }
.topbar-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.stat-pill {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 11px; background: var(--surface2);
  border-radius: 20px; font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  border: 1px solid var(--border); color: var(--text2);
}
.stat-pill .dot { width: 7px; height: 7px; border-radius: 50%; }
.today-date {
  font-size: 12px; color: var(--muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500; padding: 0 4px;
}

/* LAYOUT */
.main { display: flex; flex: 1; overflow: hidden; }

/* SIDEBAR */
.sidebar {
  width: 216px; background: var(--surface);
  border-right: 1.5px solid var(--border);
  display: flex; flex-direction: column;
  overflow-y: auto; flex-shrink: 0;
}
.sidebar-section { padding: 12px 10px; border-bottom: 1px solid var(--border); }
.sidebar-title {
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 7px; padding: 0 5px;
}
.room-item {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 7px 8px; border-radius: 8px;
  cursor: pointer; transition: background 0.12s; margin-bottom: 1px;
}
.room-item:hover { background: var(--surface2); }
.room-left { display: flex; align-items: center; gap: 8px; }
.room-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 500; color: var(--text); width: 30px;
}
.room-type { font-size: 11px; color: var(--muted); font-weight: 500; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.status-bos      { background: var(--green); }
.status-dolu     { background: var(--red); }
.status-cikis    { background: var(--yellow); }
.status-kapora   { background: var(--purple); }
.status-temizlik { background: var(--blue); }
.legend { padding: 10px 14px 14px; }
.legend-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text2);
  margin-bottom: 6px; font-weight: 500;
}
.legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* CONTENT */
.content { flex: 1; overflow: hidden; display: flex; flex-direction: column; }

/* CALENDAR */
.calendar-header {
  padding: 10px 18px; display: flex; align-items: center; gap: 10px;
  border-bottom: 1.5px solid var(--border);
  background: var(--surface); flex-shrink: 0;
}
.cal-nav-btn {
  width: 30px; height: 30px; border-radius: 7px;
  border: 1.5px solid var(--border2); background: var(--surface2);
  color: var(--text2); cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.12s; line-height: 1; text-decoration: none;
}
.cal-nav-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.cal-period {
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--text); min-width: 220px;
}
.view-toggle {
  display: flex; background: var(--surface2);
  border-radius: 8px; padding: 3px; gap: 2px;
  margin-left: auto; border: 1.5px solid var(--border);
}
.view-btn {
  padding: 4px 14px; border-radius: 5px; border: none;
  background: transparent; color: var(--muted);
  font-size: 12px; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; transition: all 0.12s; text-decoration: none;
}
.view-btn.active { background: var(--accent); color: #fff; }
.btn-add {
  padding: 7px 15px; background: var(--accent); border: none;
  border-radius: 8px; color: #fff;
  font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: opacity 0.15s;
  display: flex; align-items: center; gap: 5px;
  box-shadow: 0 2px 6px rgba(26,107,90,0.25);
  text-decoration: none;
}
.btn-add:hover { opacity: 0.88; }

/* GRID */
.calendar-grid-wrap { flex: 1; overflow: auto; background: var(--bg); }
.calendar-grid { display: grid; min-width: 900px; }
.grid-corner {
  background: var(--surface); border-bottom: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  padding: 8px 12px; font-size: 10px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  position: sticky; top: 0; left: 0; z-index: 10;
}
.grid-day-head {
  background: var(--surface); border-bottom: 1.5px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 7px 4px; text-align: center;
  position: sticky; top: 0; z-index: 9;
  transition: background 0.1s;
}
.grid-day-head:hover { background: var(--accent-l); }
.day-name {
  font-size: 10px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600;
}
.day-num {
  font-family: 'Outfit', sans-serif; font-size: 16px;
  font-weight: 700; line-height: 1.3; color: var(--text);
}
.day-num.today {
  color: #fff; background: var(--accent);
  border-radius: 50%; width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  margin: 1px auto 0;
}
.grid-room-label {
  background: var(--surface); border-bottom: 1px solid var(--border);
  border-right: 1.5px solid var(--border);
  padding: 6px 12px; position: sticky; left: 0; z-index: 8;
  display: flex; align-items: center; gap: 8px;
}
.grid-room-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; font-weight: 500; color: var(--text);
}
.grid-room-type-tag { font-size: 12px; color: var(--muted); font-weight: 600; }
.grid-cell {
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  min-height: 64px;
  cursor: pointer; transition: background 0.1s;
  background: var(--surface);
  display: flex; flex-direction: column;
  padding: 4px 2px; gap: 2px;
}
.grid-cell:hover { background: var(--accent-l); }
.grid-cell.today-col { background: #eef7f5; }
.grid-cell.today-col:hover { background: #d9ede9; }
.res-block {
  flex: 1; min-height: 0;
  border-radius: 6px; padding: 3px 7px;
  font-size: 11px; font-weight: 600;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.res-block:hover { filter: brightness(0.94); }
.res-block.dolu    { background: var(--red-l);    color: var(--red);    border: 1.5px solid rgba(192,57,43,0.25); }
.res-block.kapora  { background: var(--purple-l); color: var(--purple); border: 1.5px solid rgba(124,82,184,0.25); }
.res-block.temizlik{ background: var(--blue-l);   color: var(--blue);   border: 1.5px solid rgba(43,108,176,0.25); }
.res-block.cikis   { background: var(--yellow-l); color: var(--yellow); border: 1.5px solid rgba(196,124,20,0.25); }
.res-block.cikis-bugun  { background: var(--accent2-l); color: var(--accent2); border: 1.5px solid rgba(224,122,58,0.35); }
.res-block.tamamlandi  { background: #f0ece6; color: #8c7f6e; border: 1.5px solid #d0c8be; }

/* INNER PAGES */
.page-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 18px;
}
.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px; margin-bottom: 22px;
}
.stat-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 16px; box-shadow: var(--shadow-sm);
}
.stat-card-label {
  font-size: 11px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.8px; font-family: 'JetBrains Mono', monospace; margin-bottom: 6px;
}
.stat-card-value {
  font-family: 'Outfit', sans-serif;
  font-size: 26px; font-weight: 800; line-height: 1;
}
.stat-card-sub { font-size: 11px; color: var(--muted); margin-top: 4px; font-weight: 500; }
.table-wrap {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 12px; overflow: hidden;
  margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.table-head {
  padding: 13px 18px; border-bottom: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface2);
}
.table-head-title {
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700;
}
table { width: 100%; border-collapse: collapse; }
th {
  text-align: left; padding: 9px 16px;
  font-size: 10px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.9px; font-family: 'JetBrains Mono', monospace;
  border-bottom: 1.5px solid var(--border);
  background: var(--surface2); font-weight: 500;
}
td {
  padding: 11px 16px; font-size: 13px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle; color: var(--text2);
}
td strong { color: var(--text); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--surface2); }
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 20px;
  font-size: 11px; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.badge-green  { background: var(--green-l);  color: var(--green); }
.badge-red    { background: var(--red-l);    color: var(--red); }
.badge-yellow { background: var(--yellow-l); color: var(--yellow); }
.badge-purple { background: var(--purple-l); color: var(--purple); }
.badge-blue   { background: var(--blue-l);   color: var(--blue); }
.badge-teal   { background: var(--teal-l);   color: var(--teal); }
.money { font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 500; }
.money-green  { color: var(--green); }
.money-red    { color: var(--red); }
.money-yellow { color: var(--yellow); }

/* CLEAN */
.clean-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 10px; margin-top: 4px;
}
.clean-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 15px; cursor: pointer;
  transition: all 0.15s; display: flex; flex-direction: column; gap: 5px;
  box-shadow: var(--shadow-sm);
}
.clean-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.clean-card-num {
  font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: var(--text);
}
.clean-card-type { font-size: 11px; color: var(--muted); font-weight: 600; }
.clean-badge {
  font-size: 11px; padding: 3px 8px; border-radius: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600;
  display: inline-block; margin-top: 3px; width: fit-content;
}
.clean-bekliyor { background: var(--blue-l);  color: var(--blue); }
.clean-temiz    { background: var(--green-l); color: var(--green); }
.clean-dolu     { background: var(--red-l);   color: var(--red); }
.clean-action-btn {
  margin-top: 7px; padding: 6px 10px;
  border-radius: 7px; border: 1.5px solid var(--border);
  background: var(--surface2); color: var(--text2);
  font-size: 12px; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; transition: all 0.12s; width: 100%;
}
.clean-action-btn:hover { background: var(--green); border-color: var(--green); color: #fff; }
.clean-action-btn.mark-dirty:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* MODAL / FORM */
.modal-close {
  width: 30px; height: 30px; border-radius: 7px;
  border: 1.5px solid var(--border); background: var(--surface);
  color: var(--muted); cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.12s;
}
.modal-close:hover { color: var(--text); background: var(--border); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 11px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.9px; font-family: 'JetBrains Mono', monospace; font-weight: 500;
}
.form-input, .form-select {
  padding: 9px 11px; background: var(--surface2);
  border: 1.5px solid var(--border); border-radius: 8px;
  color: var(--text); font-size: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500; outline: none; transition: border-color 0.12s; width: 100%;
}
.form-input:focus, .form-select:focus { border-color: var(--accent); background: var(--surface); }
.price-preview {
  background: var(--accent-l); border: 1.5px solid rgba(26,107,90,0.2);
  border-radius: 10px; padding: 14px; margin-top: 14px;
}
.price-row {
  display: flex; justify-content: space-between;
  font-size: 12px; margin-bottom: 5px; color: var(--text2);
  font-family: 'JetBrains Mono', monospace;
}
.price-row.total {
  font-size: 15px; font-weight: 700; color: var(--text);
  border-top: 1.5px solid rgba(26,107,90,0.2);
  padding-top: 9px; margin-top: 7px;
  font-family: 'Outfit', sans-serif;
}
.price-row.remaining { color: var(--yellow); }
.btn-cancel {
  padding: 8px 18px; border-radius: 8px;
  border: 1.5px solid var(--border); background: var(--surface);
  color: var(--text2); font-size: 13px; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600;
  transition: all 0.12s;
}
.btn-cancel:hover { border-color: var(--border2); background: var(--surface2); }
.btn-save {
  padding: 8px 22px; border-radius: 8px; border: none;
  background: var(--accent); color: #fff;
  font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: opacity 0.15s;
  box-shadow: 0 2px 6px rgba(26,107,90,0.2);
}
.btn-save:hover { opacity: 0.87; }
.btn-danger {
  padding: 8px 18px; border-radius: 8px; border: none;
  background: var(--red-l); color: var(--red);
  font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background 0.12s; margin-right: auto;
}
.btn-danger:hover { background: rgba(192,57,43,0.2); }

.report-section { margin-bottom: 24px; }
.report-section-title {
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700;
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1.5px solid var(--border); color: var(--text);
}
.source-badge {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 2px 7px; border-radius: 5px;
  font-size: 11px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600;
}
.source-tel { background: var(--teal-l);   color: var(--teal); }
.source-wp  { background: var(--green-l);  color: var(--green); }
.source-ig  { background: var(--accent2-l); color: var(--accent2); }

/* NOTIFICATION */
.notif {
  position: fixed; bottom: 22px; right: 22px;
  background: var(--surface); border: 2px solid var(--green);
  border-radius: 11px; padding: 12px 18px;
  font-size: 13px; color: var(--green); z-index: 200;
  transform: translateY(60px); opacity: 0; transition: all 0.3s;
  box-shadow: var(--shadow-md);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600;
  max-width: 300px;
}
.notif.show { transform: translateY(0); opacity: 1; }

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
.text-danger { color: var(--red); }

/* ═══════════════════════════════════════════════
   RESPONSIVE — Tablet & Mobile
═══════════════════════════════════════════════ */

/* Mobile hamburger button */
.mobile-menu-btn {
  display: none;
  width: 36px; height: 36px;
  border: 1.5px solid var(--border); border-radius: 8px;
  background: var(--surface2); cursor: pointer;
  font-size: 18px; color: var(--text2);
  align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.12s;
}
.mobile-menu-btn:hover { background: var(--border); }

/* Mobile nav overlay & drawer */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 900;
  background: rgba(30,26,20,0.45);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-drawer {
  position: absolute; left: 0; top: 0; bottom: 0; width: 260px;
  background: var(--surface); border-right: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transform: translateX(-100%); transition: transform 0.25s ease;
  overflow-y: auto;
}
.mobile-nav-overlay.open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1.5px solid var(--border);
  background: var(--surface2); flex-shrink: 0;
}
.mobile-nav-links {
  display: flex; flex-direction: column; padding: 10px 8px; gap: 2px; flex: 1;
}
.mobile-nav-link {
  padding: 12px 14px; border-radius: 9px; font-size: 14px; font-weight: 500;
  color: var(--text2); text-decoration: none; transition: all 0.12s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.mobile-nav-link:hover { background: var(--surface2); color: var(--text); }
.mobile-nav-link.active { background: var(--accent); color: #fff; font-weight: 600; }
.mobile-nav-footer {
  padding: 14px 16px; border-top: 1.5px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
  background: var(--surface2); flex-shrink: 0;
}
.mobile-nav-footer .stat-pill { display: flex; border-radius: 8px; }
.mobile-nav-footer .today-date { display: block; font-size: 13px; }

/* Sidebar mobile header (hidden on desktop, shown inside drawer on mobile) */
.sidebar-mobile-header {
  display: none;
  align-items: center; justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1.5px solid var(--border);
  background: var(--surface2);
}

/* Sidebar overlay (behind sidebar drawer on mobile) */
.sidebar-overlay {
  display: none; position: fixed; inset: 0; z-index: 350;
  background: rgba(30,26,20,0.4);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.sidebar-overlay.open { display: block; }

/* Sidebar toggle button (mobile, inline in topbar) */
.sidebar-mobile-btn {
  display: none;
  align-items: center; gap: 5px;
  background: var(--accent); border: none; color: #fff;
  font-size: 13px; font-weight: 700; font-family: 'Outfit', sans-serif;
  padding: 6px 12px; border-radius: 8px; cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.sidebar-mobile-btn:hover { opacity: 0.88; }

/* ── Tablet ≤ 1024px ── */
@media (max-width: 1024px) {
  .today-date { display: none; }
  .stat-pill  { display: none; }
  .nav-tab    { padding: 6px 10px; font-size: 12px; }
  .logo       { font-size: 17px; }
}

/* ── Tablet yatay ≤ 1000px ── */
@media (max-width: 1000px) {
  .grid-cell        { min-height: 80px; padding: 5px 3px; gap: 3px; }
  .res-block        { font-size: 12px; padding: 5px 8px; border-radius: 7px; }
  .grid-room-label  { padding: 8px 14px; }
  .grid-room-name   { font-size: 15px; }
  .grid-room-type-tag { font-size: 13px; }
  .grid-day-head    { padding: 9px 4px; }
  .day-name         { font-size: 11px; }
  .day-num          { font-size: 14px; width: 24px; height: 24px; }
}

/* ── Mobile ≤ 767px ── */
@media (max-width: 767px) {
  /* Topbar */
  .topbar { padding: 0 14px; gap: 8px; }
  .nav-tabs     { display: none; }
  .topbar-right { display: none; }
  .mobile-menu-btn { display: flex; margin-left: auto; }

  /* Sidebar: fixed drawer */
  .sidebar {
    position: fixed; left: 0; top: 0; bottom: 0; z-index: 400;
    transform: translateX(-100%); transition: transform 0.25s ease;
    width: 220px; max-height: 100vh;
  }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 20px rgba(30,26,20,0.12);
  }
  .sidebar-mobile-header { display: flex; }
  .sidebar-mobile-btn { display: flex; }

  /* Content scrolls */
  .content { width: 100%; overflow-y: auto; }

  /* Tables */
  .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Forms: single column */
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .form-page { margin: 14px auto; }

  /* Calendar header */
  .calendar-header { flex-wrap: wrap; gap: 8px; padding: 10px 12px; }
  .cal-period { min-width: unset; font-size: 13px; flex: 1; }
  .view-toggle { margin-left: 0; }
  .btn-add { font-size: 12px; padding: 6px 11px; }

  /* Inner pages */
  [id^="page-"] { padding: 14px !important; }
  .page-title { font-size: 18px; margin-bottom: 12px; }

  /* Stat cards: 2 columns */
  .cards-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card  { padding: 12px; }
  .stat-card-value { font-size: 20px; }

  /* Clean grid */
  .clean-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

/* ═══════════════════════════════════════════════════════════════
   MOBİL APP TAKVİM  (≤ 900 px)
   Desktop grid gizlenir, native app benzeri layout gösterilir.
═══════════════════════════════════════════════════════════════ */
#mobile-cal            { display: none; }
#mobile-rezervasyonlar { display: none; }
#mobile-finans         { display: none; }
#mobile-temizlik       { display: none; }
#mobile-daireler       { display: none; }

@media (max-width: 900px) {
  /* Desktop takvimi gizle */
  #page-takvim   { display: none !important; }
  .sidebar       { display: none !important; }
  .sidebar-mobile-btn { display: none !important; }

  /* Mobile calendar container */
  #mobile-cal {
    display: flex; flex-direction: column;
    height: 100%; overflow: hidden;
    background: var(--bg);
  }

  /* ─── Header: ay etiketi + haftalık şerit ─── */
  .mob-cal-header {
    background: var(--surface);
    border-bottom: 1.5px solid var(--border);
    flex-shrink: 0;
  }
  .mob-month-row {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 14px 16px 6px;
  }
  .mob-month-label {
    font-family: 'Outfit', sans-serif;
    font-size: 21px; font-weight: 800; color: var(--text);
  }
  .mob-month-nav { display: flex; align-items: center; gap: 6px; }
  .mob-nav-btn {
    width: 34px; height: 34px; border-radius: 9px;
    border: 1.5px solid var(--border); background: var(--surface2);
    color: var(--text2); cursor: pointer; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: background 0.12s, color 0.12s;
    -webkit-tap-highlight-color: transparent;
  }
  .mob-nav-btn:active { background: var(--accent); border-color: var(--accent); color: #fff; }
  .mob-today-btn {
    height: 34px; padding: 0 13px; border-radius: 9px;
    border: 1.5px solid var(--border); background: var(--surface2);
    color: var(--text2); cursor: pointer; font-size: 12px; font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex; align-items: center;
    -webkit-tap-highlight-color: transparent; transition: background 0.12s;
  }
  .mob-today-btn:active { background: var(--accent-l); border-color: var(--accent); color: var(--accent); }

  /* 7 günlük şerit */
  .mob-week-strip {
    display: grid; grid-template-columns: repeat(7, 1fr);
    padding: 4px 8px 12px; gap: 2px;
  }
  .mob-day-btn {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    padding: 4px 2px; border-radius: 12px;
    cursor: pointer; border: none; background: transparent;
    -webkit-tap-highlight-color: transparent; transition: background 0.1s;
  }
  .mob-day-btn:active { background: var(--surface2); }
  .mob-day-name {
    font-size: 9px; font-weight: 700; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .mob-day-num {
    font-family: 'Outfit', sans-serif; font-size: 19px; font-weight: 700;
    color: var(--text); width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: background 0.12s, color 0.12s;
  }
  .mob-day-btn.is-today .mob-day-num { color: var(--accent); font-weight: 800; }
  .mob-day-btn.selected .mob-day-num {
    background: var(--accent); color: #fff;
    box-shadow: 0 3px 10px rgba(26,107,90,0.38);
  }
  /* Rezervasyon varsa küçük nokta */
  .mob-day-dot {
    width: 5px; height: 5px; border-radius: 50%; background: var(--red);
    transition: opacity 0.1s;
  }
  .mob-day-btn:not(.has-reservation) .mob-day-dot { opacity: 0; }
  .mob-day-btn.selected .mob-day-dot { background: rgba(255,255,255,0.7); }

  /* ─── Oda listesi ─── */
  .mob-room-list {
    flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: 14px 14px 96px;
    display: flex; flex-direction: column; gap: 10px;
  }
  .mob-date-label {
    font-size: 11px; font-weight: 700; color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase; letter-spacing: 1px;
    padding: 0 2px 2px;
  }

  /* Kart */
  .mob-room-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow-sm); cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.12s, box-shadow 0.12s;
  }
  .mob-room-card:active { transform: scale(0.985); box-shadow: none; }
  .mob-room-card-header {
    display: flex; align-items: center; padding: 11px 14px; gap: 10px;
    background: var(--surface2); border-bottom: 1px solid var(--border);
  }
  .mob-room-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px; font-weight: 700; color: var(--text); width: 38px;
  }
  .mob-room-type { font-size: 12px; color: var(--muted); font-weight: 500; flex: 1; }
  .mob-status-badge {
    padding: 3px 10px; border-radius: 20px;
    font-size: 11px; font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .mob-room-card-body { padding: 12px 14px; }

  /* Dolu kart renkleri */
  .mob-room-card.dolu .mob-room-card-header {
    background: var(--red-l); border-bottom-color: rgba(192,57,43,0.12);
  }
  .mob-room-card.cikis-bugun .mob-room-card-header {
    background: var(--accent2-l); border-bottom-color: rgba(224,122,58,0.12);
  }
  .mob-room-card.tamamlandi .mob-room-card-header {
    background: var(--surface2); border-bottom-color: var(--border);
  }

  /* Misafir adı */
  .mob-res-guest {
    font-family: 'Outfit', sans-serif;
    font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 6px;
  }
  /* Tarih chip'leri */
  .mob-res-dates { display: flex; align-items: center; gap: 7px; }
  .mob-res-date-chip {
    background: var(--surface2); border: 1px solid var(--border);
    border-radius: 7px; padding: 3px 9px;
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--text2); font-weight: 500;
  }
  .mob-res-arrow { color: var(--muted); font-size: 13px; }

  /* Boş kart */
  .mob-room-card.empty .mob-room-card-header { background: var(--surface); }
  .mob-empty-hint {
    display: flex; align-items: center; gap: 9px;
    color: var(--muted); font-size: 13px; font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .mob-empty-plus {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--accent-l); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 700; flex-shrink: 0; line-height: 1;
  }

  /* ─── FAB (Takvim + Rezervasyonlar ortak) ─── */
  .mob-fab {
    position: fixed; bottom: 26px; right: 20px; z-index: 100;
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--accent); color: #fff; border: none;
    font-size: 30px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(26,107,90,0.42);
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .mob-fab:active {
    transform: scale(0.90);
    box-shadow: 0 2px 8px rgba(26,107,90,0.28);
  }

  /* ════════════════════════════════════════════
     MOBİL REZERVASYONLAR LİSTESİ
  ════════════════════════════════════════════ */
  #page-rezervasyonlar { display: none !important; }
  #mobile-rezervasyonlar {
    display: flex; flex-direction: column;
    height: 100%; overflow: hidden; background: var(--bg);
  }

  /* Sayfa başlığı */
  .mob-res-page-header {
    background: var(--surface);
    border-bottom: 1.5px solid var(--border);
    padding: 13px 16px 0; flex-shrink: 0;
  }
  .mob-res-page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px; font-weight: 800; color: var(--text);
    margin-bottom: 10px;
  }

  /* Filtre sekmeleri */
  .mob-filter-bar {
    display: flex; gap: 7px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    scrollbar-width: none;
  }
  .mob-filter-bar::-webkit-scrollbar { display: none; }
  .mob-filter-pill {
    padding: 6px 14px; border-radius: 20px;
    border: 1.5px solid var(--border); background: var(--surface2);
    color: var(--text2); font-size: 12px; font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer; white-space: nowrap; flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.12s, border-color 0.12s, color 0.12s;
  }
  .mob-filter-pill.active {
    background: var(--accent); border-color: var(--accent); color: #fff;
  }
  .mob-filter-pill:active:not(.active) { background: var(--border); }

  /* Kart listesi */
  .mob-res-list {
    flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: 12px 14px 94px;
    display: flex; flex-direction: column; gap: 10px;
  }

  /* Boş durum */
  .mob-empty-state {
    display: flex; flex-direction: column; align-items: center;
    padding: 60px 20px; gap: 12px;
    color: var(--muted); font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .mob-empty-state-icon { font-size: 38px; }
  .mob-empty-state-text { font-size: 14px; font-weight: 500; }

  /* Rezervasyon kartı */
  .mob-res-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow-sm); cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.12s, box-shadow 0.12s;
    flex-shrink: 0;
  }
  .mob-res-card:active { transform: scale(0.985); box-shadow: none; }

  /* Kart başlığı */
  .mob-res-card-header {
    display: flex; align-items: center; padding: 10px 14px; gap: 10px;
    border-bottom: 1px solid var(--border);
  }
  .mob-res-card-room-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px; font-weight: 700; color: var(--text); width: 38px;
  }
  .mob-res-card-room-type { font-size: 12px; color: var(--muted); font-weight: 500; flex: 1; }

  /* Durum bazlı başlık renkleri */
  .mob-res-card.status-aktif   .mob-res-card-header { background: var(--green-l);  border-bottom-color: rgba(45,138,78,0.12); }
  .mob-res-card.status-gelecek .mob-res-card-header { background: var(--blue-l);   border-bottom-color: rgba(43,108,176,0.12); }
  .mob-res-card.status-kapora  .mob-res-card-header { background: var(--purple-l); border-bottom-color: rgba(124,82,184,0.12); }
  .mob-res-card.status-bitti   .mob-res-card-header { background: var(--surface2); }
  .mob-res-card.status-bitti { opacity: 0.72; }

  /* Kart gövdesi */
  .mob-res-card-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 7px; }
  .mob-res-card-guest {
    font-family: 'Outfit', sans-serif;
    font-size: 17px; font-weight: 700; color: var(--text);
  }
  .mob-res-card-phone {
    font-size: 12px; color: var(--muted); font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex; align-items: center; gap: 5px; margin-top: -2px;
  }
  .mob-res-card-dates { display: flex; align-items: center; gap: 7px; }
  .mob-res-date-chip {
    background: var(--surface2); border: 1px solid var(--border);
    border-radius: 7px; padding: 4px 9px;
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--text2); font-weight: 500;
  }
  .mob-res-nights {
    font-size: 11px; color: var(--muted); font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif; margin-left: 2px;
  }
  .mob-res-card-notes {
    font-size: 11px; color: var(--muted); font-style: italic;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-left: 2px solid var(--border2); padding-left: 8px;
  }

  /* Kart alt bilgi (finansal) */
  .mob-res-card-footer {
    display: flex; gap: 0;
    border-top: 1px solid var(--border);
    background: var(--surface2);
  }
  .mob-fin-chip {
    display: flex; flex-direction: column; gap: 2px;
    flex: 1; padding: 8px 12px;
    border-right: 1px solid var(--border);
  }
  .mob-fin-chip:last-child { border-right: none; }
  .mob-fin-label {
    font-size: 9px; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.7px;
    font-family: 'JetBrains Mono', monospace; font-weight: 500;
  }
  .mob-fin-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px; font-weight: 700; color: var(--text);
  }
  .mob-fin-value.val-yellow { color: var(--yellow); }
  .mob-fin-value.val-green  { color: var(--green); }
  .mob-fin-value.val-red    { color: var(--red); }

  /* ════════════════════════════════════════════
     MOBİL FİNANS EKRANI
  ════════════════════════════════════════════ */
  #page-finans { display: none !important; }
  #mobile-finans {
    display: flex; flex-direction: column;
    height: 100%; overflow: hidden; background: var(--bg);
  }

  /* ─── Üst özet bölümü ─── */
  .mob-fin-summary {
    background: var(--surface);
    border-bottom: 1.5px solid var(--border);
    padding: 14px 16px 16px; flex-shrink: 0;
  }
  .mob-fin-page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px; font-weight: 800; color: var(--text);
    margin-bottom: 14px;
  }

  /* Ana ciro kartı */
  .mob-fin-hero {
    background: var(--accent);
    border-radius: 16px; padding: 16px 18px 14px;
    margin-bottom: 10px;
    box-shadow: 0 4px 16px rgba(26,107,90,0.28);
  }
  .mob-fin-hero-label {
    font-size: 10px; color: rgba(255,255,255,0.75);
    text-transform: uppercase; letter-spacing: 1.2px;
    font-family: 'JetBrains Mono', monospace; margin-bottom: 5px;
  }
  .mob-fin-hero-value {
    font-family: 'Outfit', sans-serif;
    font-size: 32px; font-weight: 800; color: #fff; line-height: 1;
  }
  .mob-fin-hero-sub {
    font-size: 11px; color: rgba(255,255,255,0.65);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500; margin-top: 6px;
  }

  /* İkili alt kart satırı */
  .mob-fin-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .mob-fin-mini {
    border-radius: 14px; padding: 13px 14px;
    border: 1.5px solid var(--border);
  }
  .mob-fin-mini-label {
    font-size: 9px; color: var(--muted);
    text-transform: uppercase; letter-spacing: 1px;
    font-family: 'JetBrains Mono', monospace; margin-bottom: 5px;
  }
  .mob-fin-mini-value {
    font-family: 'Outfit', sans-serif;
    font-size: 22px; font-weight: 800; line-height: 1;
  }
  .mob-fin-mini.kapora { background: var(--green-l); border-color: rgba(45,138,78,0.2); }
  .mob-fin-mini.kapora .mob-fin-mini-value { color: var(--green); }
  .mob-fin-mini.borc   { background: var(--yellow-l); border-color: rgba(196,124,20,0.2); }
  .mob-fin-mini.borc   .mob-fin-mini-value { color: var(--yellow); }

  /* ─── Borç listesi ─── */
  .mob-fin-list {
    flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: 14px 14px 30px;
    display: flex; flex-direction: column; gap: 10px;
  }
  .mob-fin-section-label {
    font-size: 11px; font-weight: 700; color: var(--muted);
    text-transform: uppercase; letter-spacing: 1px;
    font-family: 'JetBrains Mono', monospace; padding: 0 2px 2px;
  }

  /* Borç kartı */
  .mob-debt-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
  }
  .mob-debt-card-header {
    display: flex; align-items: center; padding: 11px 14px; gap: 10px;
    border-bottom: 1px solid var(--border); background: var(--surface2);
  }
  .mob-debt-card.has-debt .mob-debt-card-header {
    background: var(--yellow-l); border-bottom-color: rgba(196,124,20,0.15);
  }
  .mob-debt-card.no-debt .mob-debt-card-header {
    background: var(--green-l); border-bottom-color: rgba(45,138,78,0.12);
  }
  .mob-debt-room-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px; font-weight: 700; color: var(--text); width: 38px;
  }
  .mob-debt-guest { font-size: 14px; font-weight: 600; color: var(--text); flex: 1; }

  /* İlerleme çubuğu (kapora / toplam) */
  .mob-debt-progress-wrap { padding: 10px 14px 4px; }
  .mob-debt-progress-label {
    display: flex; justify-content: space-between; margin-bottom: 5px;
    font-size: 10px; color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
  }
  .mob-debt-progress-bar {
    height: 5px; background: var(--border);
    border-radius: 3px; overflow: hidden;
  }
  .mob-debt-progress-fill {
    height: 100%; border-radius: 3px;
    background: var(--green); transition: width 0.4s ease;
  }
  .mob-debt-card.has-debt .mob-debt-progress-fill { background: var(--yellow); }

  /* Finansal alt bar */
  .mob-debt-footer {
    display: flex; border-top: 1px solid var(--border);
    background: var(--surface2);
  }
  .mob-debt-fin-chip {
    display: flex; flex-direction: column; gap: 2px;
    flex: 1; padding: 9px 12px;
    border-right: 1px solid var(--border);
  }
  .mob-debt-fin-chip:last-child { border-right: none; }
  .mob-debt-fin-label {
    font-size: 9px; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.7px;
    font-family: 'JetBrains Mono', monospace;
  }
  .mob-debt-fin-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px; font-weight: 700; color: var(--text);
  }
  .mob-debt-fin-value.val-yellow { color: var(--yellow); }
  .mob-debt-fin-value.val-green  { color: var(--green); }

  /* Çıkış tarihi */
  .mob-debt-checkout {
    padding: 7px 14px 10px;
    font-size: 11px; color: var(--muted);
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex; align-items: center; gap: 5px;
  }

  /* ════════════════════════════════════════════
     MOBİL TEMİZLİK EKRANI
  ════════════════════════════════════════════ */
  #page-temizlik { display: none !important; }
  #mobile-temizlik {
    display: flex; flex-direction: column;
    height: 100%; overflow: hidden; background: var(--bg);
  }

  /* ─── Üst özet bar ─── */
  .mob-clean-header {
    background: var(--surface);
    border-bottom: 1.5px solid var(--border);
    padding: 14px 16px 0; flex-shrink: 0;
  }
  .mob-clean-page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px; font-weight: 800; color: var(--text);
    margin-bottom: 12px;
  }

  /* Özet sayı şeridi */
  .mob-clean-summary-row {
    display: flex; gap: 8px; margin-bottom: 12px;
  }
  .mob-clean-stat {
    display: flex; align-items: center; gap: 7px;
    background: var(--surface2); border: 1.5px solid var(--border);
    border-radius: 10px; padding: 8px 12px; flex: 1;
  }
  .mob-clean-stat-dot {
    width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  }
  .mob-clean-stat-body { display: flex; flex-direction: column; gap: 1px; }
  .mob-clean-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 18px; font-weight: 800; line-height: 1; color: var(--text);
  }
  .mob-clean-stat-label {
    font-size: 9px; color: var(--muted); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.6px;
    font-family: 'JetBrains Mono', monospace;
  }

  /* ─── Filtre sekmeleri ─── */
  .mob-clean-filter-bar {
    display: flex; gap: 7px; padding-bottom: 12px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mob-clean-filter-bar::-webkit-scrollbar { display: none; }

  /* ─── Kart listesi ─── */
  .mob-clean-list {
    flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: 12px 14px 30px;
    display: flex; flex-direction: column; gap: 10px;
  }

  /* Boş durum */
  .mob-clean-empty {
    display: flex; flex-direction: column; align-items: center;
    padding: 60px 20px; gap: 12px;
    color: var(--muted); font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .mob-clean-empty-icon { font-size: 42px; }
  .mob-clean-empty-text { font-size: 14px; font-weight: 500; }

  /* ─── Oda temizlik kartı ─── */
  .mob-clean-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.12s, box-shadow 0.12s;
    flex-shrink: 0;
  }
  /* İlk child üst köşeleri, son child alt köşeleri yuvarlasın */
  .mob-clean-card > :first-child { border-radius: 14px 14px 0 0; overflow: hidden; }
  .mob-clean-card > :last-child  { border-radius: 0 0 14px 14px; overflow: hidden; }

  /* Temizlik bekliyor → mavi vurgu */
  .mob-clean-card.dirty {
    border-color: rgba(43,108,176,0.40);
    box-shadow: 0 2px 10px rgba(43,108,176,0.12);
  }
  .mob-clean-card.dirty .mob-clean-card-header { background: var(--blue-l); border-bottom-color: rgba(43,108,176,0.18); }

  /* Temiz → yeşil vurgu */
  .mob-clean-card.clean .mob-clean-card-header { background: var(--green-l); border-bottom-color: rgba(45,138,78,0.15); }

  /* Kart başlığı */
  .mob-clean-card-header {
    display: flex; align-items: center; padding: 11px 14px; gap: 12px;
    border-bottom: 1px solid var(--border); background: var(--surface2);
  }
  .mob-clean-room-num {
    font-family: 'Outfit', sans-serif;
    font-size: 22px; font-weight: 800; color: var(--text); width: 44px;
  }
  .mob-clean-room-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
  .mob-clean-room-type {
    font-size: 13px; font-weight: 600; color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
  }

  /* Kart gövdesi: durum ikonu + metin */
  .mob-clean-card-body {
    padding: 14px 16px; display: flex; align-items: center; gap: 14px;
    border-bottom: 1px solid var(--border);
  }
  .mob-clean-status-icon {
    font-size: 28px; flex-shrink: 0; line-height: 1;
  }
  .mob-clean-status-text {
    font-family: 'Outfit', sans-serif;
    font-size: 15px; font-weight: 700; color: var(--text);
  }
  .mob-clean-status-sub {
    font-size: 11px; color: var(--muted);
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 500; margin-top: 2px;
  }

  /* Aksiyon alanı */
  .mob-clean-card-action {
    padding: 12px 14px;
    background: var(--surface2);
  }
  .mob-clean-btn {
    display: block;         /* flex yerine block — iOS uyumluluğu */
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px; font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.15s, transform 0.12s;
    box-sizing: border-box;
    line-height: 1.3;
  }
  .mob-clean-btn:active { transform: scale(0.97); opacity: 0.85; }

  /* Temizlendi butonu — mavi */
  .mob-clean-btn.btn-temizle {
    background: var(--blue);
    color: #fff;
    border: 2px solid var(--blue);
    box-shadow: 0 3px 10px rgba(43,108,176,0.30);
  }
  /* Kirli işaretle butonu — belirgin kenarlıklı */
  .mob-clean-btn.btn-kirli {
    background: var(--surface);
    color: var(--text2);
    border: 2px solid var(--border2);
  }

  /* ════════════════════════════════════════════
     MOBİL DAİRELER EKRANI
  ════════════════════════════════════════════ */
  #page-daireler { display: none !important; }
  #mobile-daireler {
    display: flex; flex-direction: column;
    height: 100%; overflow: hidden; background: var(--bg);
  }

  /* ─── Sayfa başlığı + filtre ─── */
  .mob-room-header {
    background: var(--surface);
    border-bottom: 1.5px solid var(--border);
    padding: 14px 16px 0; flex-shrink: 0;
  }
  .mob-room-page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px; font-weight: 800; color: var(--text);
    margin-bottom: 12px;
  }

  /* ─── Kart listesi ─── */
  .mob-room-list {
    flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: 12px 14px 96px;
    display: flex; flex-direction: column; gap: 10px;
  }

  /* ─── Oda kartı ─── */
  .mob-room-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.12s;
    flex-shrink: 0; /* flex column'da kart yüksekliği asla sıkıştırılmasın */
  }

  /* Kart başlığı: durum rengine göre */
  .mob-room-card-header {
    display: flex; align-items: center; padding: 12px 14px; gap: 12px;
    border-bottom: 1px solid var(--border); background: var(--surface2);
    border-radius: 14px 14px 0 0;
  }
  .mob-room-card.s-bos      .mob-room-card-header { background: var(--green-l);  border-bottom-color: rgba(45,138,78,0.15); }
  .mob-room-card.s-dolu     .mob-room-card-header { background: var(--red-l);    border-bottom-color: rgba(192,57,43,0.15); }
  .mob-room-card.s-kapora   .mob-room-card-header { background: var(--purple-l); border-bottom-color: rgba(124,82,184,0.15); }
  .mob-room-card.s-temizlik .mob-room-card-header { background: var(--blue-l);   border-bottom-color: rgba(43,108,176,0.15); }

  .mob-room-num {
    font-family: 'Outfit', sans-serif;
    font-size: 24px; font-weight: 800; color: var(--text); width: 50px; flex-shrink: 0;
  }
  .mob-room-name {
    font-size: 14px; font-weight: 600; color: var(--text); flex: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }

  /* Kart gövdesi: fiyat + açıklama */
  .mob-room-card-body {
    padding: 12px 14px; display: flex; flex-direction: column; gap: 6px;
    border-bottom: 1px solid var(--border);
  }
  .mob-room-price { display: flex; align-items: center; gap: 7px; }
  .mob-room-price-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px; font-weight: 700; color: var(--text);
  }
  .mob-room-price-label {
    font-size: 11px; color: var(--muted); font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .mob-room-desc {
    font-size: 12px; color: var(--muted);
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 500;
    border-left: 2px solid var(--border2); padding-left: 8px; line-height: 1.5;
  }

  /* ─── Aksiyon alanı ─── */
  .mob-room-card-actions {
    display: flex; gap: 8px; align-items: stretch;
    background: var(--surface2);
    border-top: 1px solid var(--border);
    padding: 12px 14px;
    border-radius: 0 0 14px 14px;
  }
  /* Ortak buton stili */
  .mob-room-btn-edit,
  .mob-room-btn-delete {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    padding: 12px 8px;
    border-radius: 10px;
    font-size: 13px; font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: center; text-decoration: none; cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.15s;
    box-sizing: border-box; line-height: 1;
  }
  .mob-room-btn-edit:active,
  .mob-room-btn-delete:active { opacity: 0.82; }
  /* Edit linki */
  .mob-room-btn-edit {
    background: var(--accent); color: #fff; border: none;
    box-shadow: 0 2px 8px rgba(26,107,90,0.28);
  }
  /* Sil formu — flex container olarak form, buton içini doldursun */
  .mob-room-delete-form {
    flex: 1; margin: 0; padding: 0;
    display: flex;
  }
  .mob-room-btn-delete {
    flex: 1;
    background: var(--red-l); color: var(--red);
    border: 2px solid rgba(192,57,43,0.30);
  }

  /* FAB — Yeni Daire */
  .mob-room-fab {
    position: fixed; bottom: 26px; right: 20px; z-index: 100;
    display: flex; align-items: center; gap: 8px;
    background: var(--accent); color: #fff;
    border: none; border-radius: 28px;
    padding: 14px 20px;
    font-size: 14px; font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none; cursor: pointer;
    box-shadow: 0 4px 18px rgba(26,107,90,0.42);
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .mob-room-fab:active {
    transform: scale(0.93);
    box-shadow: 0 2px 8px rgba(26,107,90,0.28);
  }
  .mob-room-fab-icon { font-size: 20px; line-height: 1; }
}
