/* ============================================
   SENDLIFY — Main Stylesheet
   Version: 1.0.0
   ============================================ */

/* ============================================
   1. GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ============================================
   2. CSS RESET
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================
   3. LIGHT MODE VARIABLES (Default)
   ============================================ */
:root {
  --bg:           #f0f4ff;
  --surface:      #ffffff;
  --surface2:     #e8edf8;
  --surface3:     #dde4f5;
  --border:       rgba(0, 0, 0, 0.09);
  --border2:      rgba(0, 0, 0, 0.05);

  --wa:           #25D366;
  --wa-dark:      #1aad52;
  --wa-light:     rgba(37, 211, 102, 0.1);
  --wa-border:    rgba(37, 211, 102, 0.25);

  --accent:       #4ade80;
  --accent2:      #22d3ee;
  --accent3:      #818cf8;

  --text:         #0f172a;
  --text2:        #334155;
  --muted:        #64748b;
  --muted2:       #94a3b8;

  --input-bg:     #f8faff;
  --shadow:       rgba(0, 0, 0, 0.07);
  --shadow2:      rgba(0, 0, 0, 0.12);

  --danger:       #ef4444;
  --danger-light: rgba(239, 68, 68, 0.08);
  --success:      #22c55e;
  --warning:      #f59e0b;
  --info:         #22d3ee;

  --sidebar-w:    240px;
  --topbar-h:     72px;

  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    16px;
  --radius-xl:    20px;
  --radius-full:  100px;
}

/* ============================================
   4. DARK MODE VARIABLES
   ============================================ */
body.dark {
  --bg:           #060912;
  --surface:      #0e1422;
  --surface2:     #151c2e;
  --surface3:     #1a2340;
  --border:       rgba(255, 255, 255, 0.08);
  --border2:      rgba(255, 255, 255, 0.04);

  --text:         #f0f4ff;
  --text2:        #c8d0e8;
  --muted:        #6b7a99;
  --muted2:       #4a5568;

  --input-bg:     #0e1422;
  --shadow:       rgba(0, 0, 0, 0.4);
  --shadow2:      rgba(0, 0, 0, 0.6);
}

/* ============================================
   5. BASE STYLES
   ============================================ */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

img { max-width: 100%; display: block; }

/* ============================================
   6. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

h1 { font-size: 32px; letter-spacing: -1px; }
h2 { font-size: 24px; letter-spacing: -0.5px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }
h5 { font-size: 14px; }

.text-muted  { color: var(--muted); }
.text-sm     { font-size: 12px; }
.text-xs     { font-size: 11px; }
.text-lg     { font-size: 16px; }
.text-xl     { font-size: 18px; }
.font-bold   { font-weight: 700; }
.font-medium { font-weight: 500; }
.text-center { text-align: center; }
.text-right  { text-align: right; }

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

.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  padding: 32px;
  min-height: 100vh;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.page-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.page-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}

.page-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Grid systems */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

/* Spacing */
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }

/* ============================================
   8. SIDEBAR
   ============================================ */
.sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 24px 14px;
  position: fixed;
  top: 0; left: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
}

.sidebar-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  margin-bottom: 28px;
  color: var(--text);
}

.sidebar-logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--wa), var(--accent2));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.sidebar-logo span { color: var(--accent); }

.nav-section { margin-bottom: 20px; }

.nav-section-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 10px;
  margin-bottom: 6px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 2px;
  text-decoration: none;
}

.nav-item:hover {
  background: var(--surface2);
  color: var(--text);
}

.nav-item.active {
  background: var(--wa-light);
  color: var(--wa);
  font-weight: 600;
}

.nav-item .nav-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.nav-badge {
  margin-left: auto;
  background: var(--wa);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.sidebar-bottom { margin-top: auto; }

.credits-widget {
  background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(34,211,238,0.1));
  border: 1px solid var(--wa-border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  margin-bottom: 12px;
}

.credits-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.credits-value {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.credits-bar {
  height: 4px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 6px;
}

.credits-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--wa), var(--accent2));
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

.credits-sub {
  font-size: 10px;
  color: var(--muted);
}

.credits-sub a {
  color: var(--accent2);
  font-weight: 500;
}

.user-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}

.user-widget:hover { background: var(--surface2); }

.user-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wa), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  color: white;
  flex-shrink: 0;
}

.user-name  { font-size: 13px; font-weight: 600; color: var(--text); }
.user-plan  { font-size: 11px; color: var(--muted); margin-top: 1px; }

/* ============================================
   9. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.btn-primary:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(37,211,102,0.35); }
.btn-primary:active { transform: scale(0.99); }

.btn-secondary {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-secondary:hover { border-color: var(--wa); color: var(--wa); }

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--muted);
}
.btn-ghost:hover { background: var(--surface2); color: var(--text); }

.btn-danger {
  background: var(--danger-light);
  border: 1px solid rgba(239,68,68,0.2);
  color: var(--danger);
}
.btn-danger:hover { background: var(--danger); color: white; }

.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-lg { padding: 13px 24px; font-size: 15px; font-weight: 600; }
.btn-full { width: 100%; }
.btn-icon { width: 36px; height: 36px; padding: 0; border-radius: var(--radius-sm); }

/* ============================================
   10. CARDS
   ============================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: background 0.3s, border-color 0.3s;
}

.card:hover { border-color: var(--wa-border); }

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.card-subtitle { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Stat Cards */
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--wa), var(--accent2));
  opacity: 0;
  transition: opacity 0.2s;
}

.stat-card:hover { border-color: var(--wa-border); }
.stat-card:hover::before { opacity: 1; }

.stat-icon {
  width: 40px; height: 40px;
  background: var(--surface2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.stat-label { font-size: 12px; color: var(--muted); }

.stat-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  margin-top: 8px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.stat-change.up   { background: rgba(74,222,128,0.1); color: var(--accent); }
.stat-change.down { background: rgba(239,68,68,0.1);  color: var(--danger); }

/* ============================================
   11. FORMS
   ============================================ */
.form-group { margin-bottom: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.input-wrap { position: relative; }

.input-icon {
  position: absolute;
  left: 13px; top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  opacity: 0.4;
  pointer-events: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="datetime-local"],
select,
textarea {
  width: 100%;
  background: var(--input-bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.3s;
  box-shadow: 0 1px 3px var(--shadow);
}

.has-icon input,
.has-icon select {
  padding-left: 40px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--wa);
  box-shadow: 0 0 0 3px rgba(37,211,102,0.12);
}

input::placeholder,
textarea::placeholder { color: var(--muted); opacity: 0.7; }

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

select { cursor: pointer; }
select option { background: var(--surface2); }

input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--wa);
  cursor: pointer;
  padding: 0;
  box-shadow: none;
}

.char-count { font-size: 11px; color: var(--muted); text-align: right; margin-top: 4px; }

.form-hint { font-size: 11px; color: var(--muted); margin-top: 5px; }

/* ============================================
   12. BADGES & TAGS
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 500;
}

.badge-success  { background: rgba(37,211,102,0.1);  color: var(--wa); }
.badge-info     { background: rgba(34,211,238,0.1);  color: var(--accent2); }
.badge-warning  { background: rgba(245,158,11,0.1);  color: var(--warning); }
.badge-danger   { background: rgba(239,68,68,0.1);   color: var(--danger); }
.badge-muted    { background: rgba(107,122,153,0.1); color: var(--muted); }
.badge-purple   { background: rgba(129,140,248,0.1); color: var(--accent3); }

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 500;
  margin-right: 4px;
}

.tag-dealer   { background: rgba(34,211,238,0.1);  color: var(--accent2); }
.tag-vip      { background: rgba(251,191,36,0.1);  color: #fbbf24; }
.tag-new      { background: rgba(74,222,128,0.1);  color: var(--accent); }
.tag-inactive { background: rgba(107,122,153,0.1); color: var(--muted); }

/* ============================================
   13. ALERTS
   ============================================ */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.alert-error   { background: var(--danger-light); border: 1px solid rgba(239,68,68,0.2); color: var(--danger); }
.alert-success { background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.2); color: var(--wa); }
.alert-info    { background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.2); color: var(--accent2); }
.alert-warning { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2); color: var(--warning); }

/* ============================================
   14. TABLE
   ============================================ */
.table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead tr { border-bottom: 1px solid var(--border); }

th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  background: var(--surface);
}

td {
  padding: 13px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
  transition: background 0.15s;
}

tr:last-child td { border-bottom: none; }
tbody tr { cursor: pointer; }
tbody tr:hover td { background: var(--surface2); }

.table-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.page-btns { display: flex; gap: 6px; }

.page-btn {
  width: 32px; height: 32px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  cursor: pointer;
  color: var(--text);
  transition: all 0.2s;
}

.page-btn:hover,
.page-btn.active { border-color: var(--wa); color: var(--wa); }

/* ============================================
   15. MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  width: 540px;
  max-height: 88vh;
  overflow-y: auto;
  animation: modalIn 0.25s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.modal-close {
  width: 30px; height: 30px;
  background: var(--surface2);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--muted);
  cursor: pointer;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover { background: var(--danger-light); color: var(--danger); }

.modal-body   { padding: 22px 24px; }
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* ============================================
   16. TOOLBAR / FILTER BAR
   ============================================ */
.toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.search-wrap { position: relative; flex: 1; max-width: 300px; }

.search-icon {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
  pointer-events: none;
}

.search-input {
  padding-left: 36px !important;
  border-radius: var(--radius) !important;
}

.filter-tabs {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3px;
  gap: 2px;
}

.filter-tab {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}

.filter-tab.active {
  background: var(--surface2);
  color: var(--text);
  font-weight: 500;
}

/* ============================================
   17. THEME TOGGLE
   ============================================ */
.theme-toggle {
  width: 38px; height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 17px;
  box-shadow: 0 2px 8px var(--shadow);
  transition: all 0.2s;
  flex-shrink: 0;
}

.theme-toggle:hover { border-color: var(--wa); transform: scale(1.05); }

/* ============================================
   18. PROGRESS BAR
   ============================================ */
.progress {
  height: 5px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--wa), var(--accent2));
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

/* ============================================
   19. UPLOAD ZONE
   ============================================ */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.upload-zone:hover {
  border-color: var(--wa);
  background: var(--wa-light);
}

.upload-zone-icon  { font-size: 40px; margin-bottom: 12px; }
.upload-zone-title { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.upload-zone-sub   { font-size: 12px; color: var(--muted); }

/* ============================================
   20. CHANNEL PICKER
   ============================================ */
.channel-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.channel-opt {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--input-bg);
}

.channel-opt:hover { border-color: var(--muted); }

.channel-opt.selected {
  border-color: var(--wa);
  background: var(--wa-light);
}

.channel-opt-icon { font-size: 24px; margin-bottom: 6px; }
.channel-opt-name { font-size: 12px; font-weight: 500; color: var(--text); }

/* ============================================
   21. ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.animate-fadeUp { animation: fadeUp 0.3s ease; }
.animate-fadeIn { animation: fadeIn 0.3s ease; }

/* ============================================
   22. SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted2); }

/* ============================================
   23. RESPONSIVE (Basic)
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); }
  .main-content { margin-left: 0; padding: 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .page-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}