@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');

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

:root {
  --primary: #25D366;
  --secondary: #128C7E;
  --bg: #111B21;
  --surface: #1F2C33;
  --surface2: #2A3942;
  --text: #E9EDEF;
  --text2: #8696A0;
  --accent: #FFE610;
  --error: #EF4444;
  --success: #10B981;
  --border: #334155;
  --radius: 10px;
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

/* ==================== LAYOUT ==================== */
.app {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}

.sidebar {
  width: 220px;
  background: var(--surface);
  border-left: 1px solid var(--border);
  padding: 16px 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sidebar .logo {
  padding: 0 16px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.sidebar .logo h2 {
  color: var(--primary);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-info {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text2);
  padding: 6px 10px;
  background: var(--bg);
  border-radius: 6px;
}

.user-info strong { color: var(--text); display: block; font-size: 12px; }

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  color: var(--text2);
  transition: all 0.15s;
  border: none;
  background: none;
  width: 100%;
  font-family: inherit;
  font-size: 13px;
  text-align: right;
}

.nav-item:hover { background: var(--surface2); color: var(--text); }
.nav-item.active { background: var(--surface2); color: var(--primary); border-right: 3px solid var(--primary); }

.nav-icon { width: 18px; height: 18px; flex-shrink: 0; }
.nav-divider { height: 1px; background: var(--border); margin: 6px 16px; }

.main-content {
  flex: 1;
  padding: 28px 32px;
  overflow-y: auto;
  max-height: 100vh;
}

.page { display: none; }
.page.active { display: block; }

/* ==================== PAGE HEADER ==================== */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.page-header h1 {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-icon { width: 22px; height: 22px; }
.section-icon { width: 18px; height: 18px; }
.btn-icon-svg { width: 15px; height: 15px; }
.logo-icon { width: 28px; height: 28px; }

.empty-icon-svg {
  width: 56px;
  height: 56px;
  color: var(--text2);
  margin-bottom: 16px;
  opacity: 0.5;
}

/* ==================== BUTTONS ==================== */
.btn {
  padding: 8px 18px;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-primary { background: var(--primary); color: #111; }
.btn-primary:hover { background: #1eba59; }
.btn-accent { background: var(--accent); color: #111; }
.btn-accent:hover { opacity: 0.9; }
.btn-danger { background: var(--error); color: white; }
.btn-danger:hover { opacity: 0.85; }
.btn-secondary { background: var(--surface2); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--border); }
.btn-sm { padding: 5px 10px; font-size: 12px; }

/* ==================== CARDS ==================== */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 12px;
}

.account-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.account-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(37,211,102,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.account-avatar svg { width: 20px; height: 20px; }

.account-details { min-width: 0; }
.account-details h3 { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.account-details p { font-size: 12px; color: var(--text2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.account-actions { display: flex; gap: 6px; flex-shrink: 0; }

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-dot.connected { background: var(--success); }
.status-dot.disconnected { background: var(--error); }
.status-dot.scanning { background: var(--accent); animation: pulse 1s infinite; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ==================== FORMS ==================== */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 5px; font-size: 13px; font-weight: 600; color: var(--text); }
.form-group .hint { font-size: 11px; color: var(--text2); margin-top: 4px; }

input[type="text"],
input[type="number"],
input[type="time"],
input[type="password"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border 0.2s;
  -webkit-appearance: none;
}

input:focus, textarea:focus, select:focus { border-color: var(--primary); }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 50px var(--bg) inset;
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
  border: 1px solid var(--border);
}

textarea { min-height: 100px; resize: vertical; }

/* Upload */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.upload-zone:hover, .upload-zone.dragover { border-color: var(--primary); }
.upload-zone input[type="file"] { display: none; }
.upload-icon-svg { width: 36px; height: 36px; color: var(--text2); margin-bottom: 8px; }
.upload-zone p { color: var(--text2); font-size: 13px; }
.upload-preview { max-width: 180px; max-height: 180px; border-radius: 8px; margin-top: 10px; }

/* Checkboxes */
.checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; }
.checkbox-item {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 12px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer; font-size: 13px; transition: 0.15s;
}
.checkbox-item:hover { border-color: var(--primary); }
.checkbox-item input[type="checkbox"] { accent-color: var(--primary); width: 15px; height: 15px; }

/* Toggle */
.toggle-group { display: flex; background: var(--bg); border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.toggle-option {
  flex: 1; padding: 9px 14px; text-align: center; cursor: pointer;
  font-size: 13px; font-weight: 600; border: none; background: none;
  color: var(--text2); font-family: inherit; transition: 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.toggle-option.active { background: var(--primary); color: #111; }

.inline-fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }

.time-input-group { display: flex; gap: 8px; }
.time-field {
  flex: 1; display: flex; align-items: center; gap: 6px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 0 10px;
}
.time-field input {
  width: 50px; border: none; background: none; text-align: center;
  padding: 10px 4px; font-size: 16px; font-weight: 700; color: var(--text);
}
.time-field input:focus { outline: none; }
.time-field span { font-size: 12px; color: var(--text2); white-space: nowrap; }
.number-count { display: inline-flex; align-items: center; padding: 4px 12px; background: rgba(37,211,102,0.1); border-radius: 20px; font-size: 13px; color: var(--primary); font-weight: 600; }

/* Schedule */
.schedule-section { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; margin-top: 8px; }
.schedule-toggle { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.switch { position: relative; width: 42px; height: 22px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--border); border-radius: 22px; transition: 0.3s;
}
.slider:before {
  content: ''; position: absolute; height: 16px; width: 16px;
  right: 3px; bottom: 3px; background: white; border-radius: 50%; transition: 0.3s;
}
.switch input:checked + .slider { background: var(--primary); }
.switch input:checked + .slider:before { transform: translateX(-20px); }

.days-selector { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.day-chip {
  padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 600;
  cursor: pointer; background: var(--surface); color: var(--text2);
  border: 1px solid var(--border); transition: 0.15s;
}
.day-chip.selected { background: var(--primary); color: #111; border-color: var(--primary); }

.campaign-form { max-width: 720px; }
.section-title {
  font-size: 15px; font-weight: 700; margin-bottom: 12px; margin-top: 28px;
  color: var(--primary); display: flex; align-items: center; gap: 8px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.section-title:first-child { margin-top: 0; }

/* ==================== STATS ==================== */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 10px; margin-bottom: 20px; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; text-align: center; }
.stat-card .stat-value { font-size: 26px; font-weight: 800; }
.stat-card .stat-label { font-size: 11px; color: var(--text2); margin-top: 4px; }
.stat-card.sent .stat-value { color: var(--success); }
.stat-card.failed .stat-value { color: var(--error); }
.stat-card.notwa .stat-value { color: var(--accent); }

/* ==================== PROGRESS ==================== */
.progress-bar-wrapper { background: var(--surface2); border-radius: 10px; height: 18px; overflow: hidden; margin-bottom: 20px; }
.progress-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: 10px; transition: width 0.5s ease;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #111; min-width: 36px;
}

/* ==================== BADGES ==================== */
.campaign-status-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600;
}
.badge-running { background: rgba(37,211,102,0.12); color: var(--primary); }
.badge-paused { background: rgba(255,230,16,0.12); color: var(--accent); }
.badge-resting { background: rgba(134,150,160,0.12); color: var(--text2); }
.badge-completed { background: rgba(16,185,129,0.12); color: var(--success); }
.badge-stopped { background: rgba(239,68,68,0.12); color: var(--error); }
.badge-draft { background: rgba(134,150,160,0.12); color: var(--text2); }
.badge-waiting_schedule { background: rgba(255,230,16,0.12); color: var(--accent); }

/* ==================== TABLE ==================== */
.table-wrapper { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 10px 14px; text-align: right; font-size: 13px; border-bottom: 1px solid var(--border); }
th { color: var(--text2); font-weight: 600; background: var(--surface); font-size: 12px; }
td { color: var(--text); }
tr:hover td { background: rgba(255,255,255,0.02); }
.actions-cell { white-space: nowrap; }
.actions-cell .btn { margin-left: 4px; }

.log-status { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 4px; font-size: 11px; }
.log-sent { background: rgba(16,185,129,0.12); color: var(--success); }
.log-failed { background: rgba(239,68,68,0.12); color: var(--error); }
.log-not_on_whatsapp { background: rgba(255,230,16,0.12); color: var(--accent); }

.campaign-actions-bar { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }

/* ==================== EMPTY ==================== */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state h3 { font-size: 16px; margin-bottom: 6px; color: var(--text); }
.empty-state p { color: var(--text2); font-size: 13px; }

/* ==================== MODAL ==================== */
.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); align-items: center; justify-content: center;
  z-index: 1000; display: none;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--surface); border-radius: 14px; padding: 24px;
  width: 90%; max-width: 480px; border: 1px solid var(--border);
}
.modal h3 { margin-bottom: 16px; font-size: 17px; display: flex; align-items: center; gap: 8px; }
.modal-actions { display: flex; gap: 8px; margin-top: 16px; }

.qr-container { text-align: center; padding: 20px; }
.qr-container img { max-width: 240px; border-radius: 12px; background: white; padding: 12px; }
.qr-container p { margin-top: 10px; color: var(--text2); font-size: 13px; }

/* ==================== AUTH ==================== */
.auth-screen {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; background: var(--bg); padding: 20px;
}
.auth-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px; width: 100%; max-width: 400px;
}
.auth-logo {
  text-align: center; font-size: 22px; font-weight: 800;
  color: var(--primary); margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.auth-card h2 { font-size: 18px; margin-bottom: 20px; text-align: center; }
.auth-error { background: rgba(239,68,68,0.1); color: var(--error); padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 12px; }
.auth-warning { background: rgba(255,230,16,0.1); color: var(--accent); }
.auth-success { background: rgba(16,185,129,0.1); color: var(--success); padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 12px; }
.auth-switch { text-align: center; margin-top: 16px; font-size: 13px; color: var(--text2); }
.auth-switch a { color: var(--primary); text-decoration: none; font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }

/* ==================== ADMIN ==================== */
.user-active { background: rgba(16,185,129,0.12); color: var(--success); padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }
.user-inactive { background: rgba(239,68,68,0.12); color: var(--error); padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; }

.sub-badge { padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; display: inline-block; }
.sub-trial { background: rgba(255,230,16,0.12); color: var(--accent); }
.sub-monthly { background: rgba(37,211,102,0.12); color: var(--primary); }
.sub-yearly { background: rgba(16,185,129,0.12); color: var(--success); }
.sub-lifetime { background: rgba(139,92,246,0.12); color: #A78BFA; }
.sub-expired { background: rgba(239,68,68,0.12); color: var(--error); }

.subscription-banner {
  padding: 10px 14px; border-radius: var(--radius); margin-bottom: 8px; font-size: 12px;
  display: flex; align-items: center; gap: 8px;
}
.subscription-banner.active { background: rgba(37,211,102,0.08); color: var(--primary); }
.subscription-banner.trial { background: rgba(255,230,16,0.08); color: var(--accent); }
.subscription-banner.expired { background: rgba(239,68,68,0.08); color: var(--error); }

.user-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.user-detail-item { padding: 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; }
.user-detail-item .label { font-size: 11px; color: var(--text2); margin-bottom: 3px; }
.user-detail-item .value { font-size: 14px; font-weight: 600; }

/* ==================== RESPONSIVE ==================== */

/* Mobile elements - hidden on desktop */
.mobile-menu-btn, .mobile-overlay, .sidebar-close-btn { display: none; }

@media (max-width: 768px) {
  /* Layout */
  .app { flex-direction: column; }

  /* Mobile top bar with hamburger */
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 52px;
    z-index: 100;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    width: 100%;
    padding: 0 16px;
    gap: 10px;
    cursor: pointer;
    color: var(--primary);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }

  /* Overlay */
  .mobile-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); z-index: 140; }
  .mobile-overlay.show { display: block; }

  /* Sidebar drawer from right */
  .sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    max-width: 280px;
    height: 100vh;
    height: 100dvh;
    z-index: 150;
    border-left: 1px solid var(--border);
    border-right: none;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 0;
    box-shadow: -6px 0 24px rgba(0,0,0,0.5);
  }

  .sidebar.open { right: 0; }

  /* Close button inside sidebar */
  .sidebar-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 14px;
    left: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--text2);
    cursor: pointer;
    z-index: 10;
  }

  .sidebar .logo { padding: 14px 16px 14px; }
  .sidebar .logo h2 { font-size: 15px; }

  .nav-item { font-size: 14px; padding: 13px 16px; }
  .nav-item.active { border-right: 3px solid var(--primary); }
  .nav-icon { width: 20px; height: 20px; }

  /* Main content */
  .main-content {
    padding: 16px 14px;
    padding-top: 68px;
    max-height: none;
    min-height: 100vh;
    min-height: 100dvh;
  }

  /* Page header */
  .page-header {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .page-header h1 { font-size: 18px; }
  .page-header .btn { width: 100%; justify-content: center; padding: 12px 16px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stat-card { padding: 14px 8px; }
  .stat-card .stat-value { font-size: 22px; }
  .stat-card .stat-label { font-size: 11px; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }

  .account-card {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .account-info { gap: 10px; }

  .account-actions {
    display: flex;
    gap: 8px;
  }

  .account-actions .btn { flex: 1; justify-content: center; padding: 10px; }

  /* Forms */
  .inline-fields { grid-template-columns: 1fr; }
  .campaign-form { max-width: 100%; }

  input[type="text"],
  input[type="number"],
  input[type="time"],
  input[type="password"],
  input[type="email"],
  textarea,
  select {
    font-size: 16px;
    padding: 12px 14px;
  }

  textarea { min-height: 90px; }

  .upload-zone { padding: 20px 14px; }
  .upload-preview { max-width: 140px; max-height: 140px; }

  .toggle-option { padding: 11px 8px; font-size: 13px; }

  .checkbox-group { flex-direction: column; }
  .checkbox-item { width: 100%; padding: 10px 12px; }

  .days-selector { gap: 6px; }
  .day-chip { padding: 7px 12px; font-size: 12px; }

  .schedule-section { padding: 14px; }

  /* Buttons */
  .btn { padding: 10px 16px; font-size: 14px; }
  .btn-sm { padding: 8px 12px; font-size: 12px; }

  .campaign-actions-bar { flex-wrap: wrap; gap: 8px; }
  .campaign-actions-bar .btn { flex: 1; min-width: calc(50% - 4px); justify-content: center; }

  /* Tables - make scrollable */
  .table-wrapper { border-radius: 8px; margin: 0 -2px; -webkit-overflow-scrolling: touch; }
  th, td { padding: 10px 10px; font-size: 12px; white-space: nowrap; }
  th { font-size: 11px; }

  .actions-cell { display: flex; gap: 4px; }
  .actions-cell .btn { margin-left: 0; padding: 6px 8px; }

  /* Progress bar */
  .progress-bar-wrapper { height: 20px; border-radius: 10px; }
  .progress-bar-fill { font-size: 11px; }

  /* Empty state */
  .empty-state { padding: 50px 16px; }
  .empty-icon-svg { width: 48px; height: 48px; }
  .empty-state h3 { font-size: 17px; }

  /* Modal */
  .modal-overlay { align-items: flex-end; }
  .modal {
    width: 100%;
    max-width: none;
    max-height: 92vh;
    max-height: 92dvh;
    overflow-y: auto;
    padding: 24px 18px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    border-radius: 16px 16px 0 0;
    animation: slideUp 0.3s ease;
  }

  @keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  .modal h3 { font-size: 17px; }
  .modal-actions { flex-direction: column; gap: 8px; }
  .modal-actions .btn { width: 100%; justify-content: center; padding: 12px; }

  .qr-container img { max-width: 220px; }

  /* Auth */
  .auth-screen { padding: 16px; }
  .auth-card { padding: 24px 18px; border-radius: 16px; }
  .auth-logo { font-size: 20px; }
  .auth-card h2 { font-size: 17px; }

  /* Admin */
  .user-detail-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .user-detail-item { padding: 12px; }
  .user-detail-item .value { font-size: 13px; }

  /* Reports */
  #reports-list .card { padding: 14px; }
  #reports-list .card > div { flex-direction: column !important; gap: 12px !important; }

  /* Section titles */
  .section-title { font-size: 14px; margin-top: 24px; }
}

/* Small phones */
@media (max-width: 380px) {
  .main-content { padding: 12px 10px; padding-top: 62px; }
  .page-header h1 { font-size: 16px; }
  .stat-card .stat-value { font-size: 20px; }
  .user-detail-grid { grid-template-columns: 1fr; }
  .sidebar { width: 85vw; max-width: 260px; }
  .nav-item { font-size: 13px; padding: 12px 14px; }
}
