/* ============================================================
   DENTAL CRM — Modern UI (2026)
   Paleta: Soft mint/teal për dental + neutralë profesionalë
   ============================================================ */

:root {
  --primary:        #0d9488;          /* teal-600 — dental medical feel */
  --primary-dark:   #0f766e;
  --primary-light:  #ccfbf1;
  --accent:         #6366f1;          /* indigo për highlight */
  --warning:        #f59e0b;
  --danger:         #ef4444;
  --success:        #10b981;
  --info:           #0ea5e9;

  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --sidebar-w: 240px;
  --header-h: 60px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
  --radius: 10px;
}

/* ── Typography ────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { font-size: 14.5px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--gray-50);
  color: var(--gray-800);
  margin: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-weight: 600; color: var(--gray-900); letter-spacing: -0.01em; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* ── Layout: sidebar + main ──────────────────────────────────── */
.app {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  width: var(--sidebar-w);
  background: var(--gray-900);
  color: #cbd5e1;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  z-index: 100;
}
.sidebar-brand {
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0 22px;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sidebar-brand .brand-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: 10px;
  font-size: 1.2rem;
}
.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  overflow-y: auto;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  color: #cbd5e1;
  font-weight: 500;
  font-size: .94rem;
  margin-bottom: 2px;
  transition: all .15s;
}
.sidebar-nav a i {
  width: 20px; margin-right: 10px;
  font-size: 1.05rem; color: var(--gray-400);
}
.sidebar-nav a:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.sidebar-nav a:hover i { color: var(--primary-light); }
.sidebar-nav a.active {
  background: var(--primary);
  color: #fff;
}
.sidebar-nav a.active i { color: #fff; }
.sidebar-nav .nav-section {
  font-size: .7rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray-500);
  padding: 14px 14px 6px;
  letter-spacing: .08em;
}
.sidebar-foot {
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem;
}
.avatar {
  width: 34px; height: 34px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.sidebar-foot .meta { flex: 1; line-height: 1.2; }
.sidebar-foot .meta .name { color: #fff; font-weight: 600; }
.sidebar-foot .meta .role { color: var(--gray-400); font-size: .75rem; }
.sidebar-foot .logout {
  color: var(--gray-400);
  font-size: 1.1rem;
}
.sidebar-foot .logout:hover { color: var(--danger); }

.main {
  flex: 1;
  margin-left: var(--sidebar-w);
  min-width: 0;
}
.topbar {
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  padding: 0 24px;
  position: sticky; top: 0; z-index: 50;
}
.topbar .page-title { font-size: 1.15rem; font-weight: 600; margin: 0; }
.content {
  padding: 24px;
  max-width: 1400px;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.card-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-200);
  font-weight: 600;
  font-size: .95rem;
  display: flex; align-items: center; justify-content: space-between;
}
.card-header i { color: var(--primary); margin-right: 6px; }
.card-body { padding: 18px; }

/* ── Stats Cards (dashboard) ─────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.stat {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all .2s;
}
.stat:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.stat .ico {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.stat .ico.warn   { background: #fef3c7; color: #d97706; }
.stat .ico.info   { background: #dbeafe; color: #2563eb; }
.stat .ico.primary{ background: var(--primary-light); color: var(--primary-dark); }
.stat .ico.ok     { background: #d1fae5; color: #059669; }
.stat .label {
  font-size: .82rem;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.stat .num {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1;
}
.stat .sub {
  font-size: .75rem;
  color: var(--gray-400);
  margin-top: 4px;
}
.stat a { font-size: .8rem; }

/* ── Lists / table-like ─────────────────────────────────────── */
.list-item {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center;
  transition: background .1s;
}
.list-item:last-child { border-bottom: 0; }
.list-item:hover { background: var(--gray-50); }
.list-item .info { flex: 1; min-width: 0; }
.list-item .info .name { font-weight: 600; color: var(--gray-900); }
.list-item .info .meta { font-size: .82rem; color: var(--gray-500); margin-top: 2px; }
.list-item .right { text-align: right; font-size: .82rem; color: var(--gray-600); }

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-400);
}
.empty-state i { font-size: 2.5rem; display: block; margin-bottom: 8px; color: var(--gray-300); }

/* ── Tables ─────────────────────────────────────────────────── */
.table-modern {
  width: 100%;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
}
.table-modern thead th {
  background: var(--gray-50);
  font-size: .73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-500);
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
}
.table-modern tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  font-size: .9rem;
  vertical-align: middle;
}
.table-modern tbody tr:hover { background: var(--gray-50); }
.table-modern tbody tr:last-child td { border-bottom: 0; }

/* ── Badges / pills ─────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: .73rem;
  font-weight: 600;
  line-height: 1.4;
}
.pill i { font-size: .8rem; }
.pill.gray    { background: var(--gray-100); color: var(--gray-700); }
.pill.info    { background: #dbeafe; color: #1e40af; }
.pill.primary { background: var(--primary-light); color: var(--primary-dark); }
.pill.success { background: #d1fae5; color: #047857; }
.pill.warn    { background: #fef3c7; color: #92400e; }
.pill.danger  { background: #fee2e2; color: #b91c1c; }
.pill.dark    { background: var(--gray-800); color: #fff; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center; gap: 6px;
  padding: 7px 14px;
  font-size: .87rem;
  font-weight: 500;
  border-radius: 7px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .1s;
  background: #fff;
  color: var(--gray-700);
  border-color: var(--gray-300);
}
.btn:hover { background: var(--gray-50); }
.btn-primary {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-success { background: var(--success); color: #fff; border: 0; }
.btn-success:hover { background: #059669; color: #fff; }
.btn-warn { background: var(--warning); color: #fff; border: 0; }
.btn-warn:hover { background: #d97706; color: #fff; }
.btn-sm { padding: 4px 10px; font-size: .8rem; }
.btn-icon { padding: 6px 8px; }

/* ── Forms ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 12px; }
.form-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 4px;
}
.form-control, .form-select {
  width: 100%;
  padding: 7px 11px;
  font-size: .9rem;
  border: 1px solid var(--gray-300);
  border-radius: 7px;
  background: #fff;
  color: var(--gray-900);
  transition: border-color .1s, box-shadow .1s;
}
.form-control:focus, .form-select:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,148,136,.15);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

/* ── Patient header ─────────────────────────────────────────── */
.patient-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 28px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}
.patient-hero .avatar-lg {
  width: 70px; height: 70px;
  background: rgba(255,255,255,.2);
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
}
.patient-hero h2 { color: #fff; margin: 0; font-size: 1.5rem; }
.patient-hero .phone {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
}
.patient-hero .phone:hover { color: var(--primary-light); }
.patient-hero .meta { opacity: .85; font-size: .85rem; }

/* ── Status big pill ────────────────────────────────────────── */
.status-pill-lg {
  padding: 8px 16px;
  font-size: .92rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ── Activity timeline ───────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 28px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 0; bottom: 0;
  width: 2px; background: var(--gray-200);
}
.timeline-item {
  position: relative;
  padding-bottom: 14px;
  font-size: .85rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -22px; top: 4px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px #fff;
}
.timeline-item .ts { color: var(--gray-500); font-size: .75rem; }
.timeline-item .who { font-weight: 600; color: var(--gray-800); }

/* ── Toast (click-to-dial feedback) ─────────────────────────── */
#crm-toast {
  position: fixed;
  top: 80px; right: 24px;
  background: var(--gray-900);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  font-size: .9rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  transform: translateY(-10px);
  pointer-events: none;
}
#crm-toast.show { opacity: 1; transform: translateY(0); }

/* ── Login page ─────────────────────────────────────────────── */
.login-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 20px;
}
.login-card {
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 440px;
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.login-card h1 {
  text-align: center;
  font-size: 1.4rem;
  margin: 0 0 6px;
}
.login-card .sub {
  text-align: center;
  color: var(--gray-500);
  font-size: .9rem;
  margin-bottom: 24px;
}
.login-card .tooth-icon {
  width: 56px; height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.8rem;
  color: var(--primary-dark);
}
.alert {
  padding: 10px 14px;
  border-radius: 7px;
  font-size: .87rem;
  margin-bottom: 14px;
}
.alert-danger { background: #fee2e2; color: #991b1b; }
.alert-info { background: #dbeafe; color: #1e40af; }
.alert-warning { background: #fef3c7; color: #92400e; }
.alert-success { background: #d1fae5; color: #065f46; }

/* ── Utility ────────────────────────────────────────────────── */
.row-flex { display: flex; flex-wrap: wrap; gap: 16px; }
.col-7 { flex: 0 0 calc(58.33% - 8px); min-width: 0; }
.col-5 { flex: 0 0 calc(41.67% - 8px); min-width: 0; }
.col-6 { flex: 0 0 calc(50% - 8px); min-width: 0; }
.col-4 { flex: 0 0 calc(33.33% - 11px); min-width: 0; }
.col-3 { flex: 0 0 calc(25% - 12px); min-width: 0; }
@media (max-width: 900px) {
  .col-7, .col-5, .col-6, .col-4, .col-3 { flex: 0 0 100%; }
  .sidebar { transform: translateX(-100%); transition: transform .2s; box-shadow: var(--shadow-lg); }
  .sidebar.open { transform: translateX(0); }
  .main { margin-left: 0; }
  .mobile-toggle { display: inline-flex !important; }
  .content { padding: 14px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat { padding: 14px; gap: 10px; }
  .stat .num { font-size: 1.3rem; }
  .stat .ico { width: 40px; height: 40px; font-size: 1.1rem; }
  .topbar { padding: 0 14px; }
  .topbar form input { width: 150px !important; font-size: .8rem !important; }
  .patient-hero { padding: 18px; }
  .patient-hero h2 { font-size: 1.15rem; }
  .patient-hero .avatar-lg { width: 50px; height: 50px; font-size: 1.2rem; }
  /* mobile: drop the right-side action column below, full width, wrapping */
  .patient-hero > .d-flex { flex-wrap: wrap; }
  .patient-hero > .d-flex > .text-end { width: 100%; flex-direction: row !important; flex-wrap: wrap; align-items: center !important; justify-content: flex-start !important; margin-top: 12px; }
  .patient-hero > .d-flex > .text-end .btn { flex: 0 0 auto; }
  .table-modern thead { display: none; }
  .table-modern tbody td { display: block; padding: 6px 14px; border: 0; }
  .table-modern tbody tr { border-bottom: 1px solid var(--gray-200); padding: 8px 0; display: block; }
  .table-modern tbody tr:hover { background: var(--gray-50); }
  /* labelled cells: show column name when header is hidden (e.g. performance table) */
  .table-modern tbody td[data-label] { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
  .table-modern tbody td[data-label]::before { content: attr(data-label); font-weight: 600; color: var(--gray-500); font-size: .78rem; }
  .table-modern tbody td.cell-agent { background: var(--gray-50); padding: 10px 14px; font-weight: 600; }
  /* ── overflow fixes (full CRM mobile audit 2026-05-30) ── */
  .form-select { max-width: 100%; }                                  /* safety net: no select wider than its box */
  .statusbar form { flex-wrap: wrap; min-width: 0 !important; }      /* patient dual-status: stack within form */
  .statusbar .form-select { width: 100% !important; }
  .cal-bar { flex-wrap: wrap; }                                      /* calendar toolbar groups wrap */
  .cal-bar .form-select { max-width: 44vw; font-size: .8rem; }
  .heatmap-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }  /* performance heatmap scrolls */
  .heatmap-wrap table { min-width: 560px; }
  .btn { padding: 8px 14px; }  /* finger-friendly */
  .form-row { grid-template-columns: 1fr; }
  .card-header { padding: 12px 14px; flex-wrap: wrap; gap: 6px; }
  .card-body { padding: 14px; }
  .kanban { display: block !important; height: auto !important; }
  .kcol { margin-bottom: 12px; max-height: 380px; }
  audio { height: 32px; }
}
@media (max-width: 500px) {
  .stat-grid { grid-template-columns: 1fr; }
  .topbar { gap: 6px; padding: 0 10px; }
  .topbar .page-title { font-size: .95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 38vw; }
  /* declutter topbar: drop secondary buttons, collapse Support to icon-only */
  .topbar .tb-extra { display: none !important; }
  .topbar .tb-support .tb-label { display: none; }
  .topbar .tb-support { padding: 7px 9px !important; }
  .topbar form input { width: 110px !important; }
}
.mobile-toggle { display: none; margin-right: 12px; }
.muted { color: var(--gray-500); font-size: .85rem; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 18px; }
.mb-3 { margin-bottom: 18px; }
.text-end { text-align: right; }
.d-flex { display: flex; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.flex-1 { flex: 1; min-width: 0; }
.hidden { display: none; }
.input-group { display: flex; }
.input-group .form-control { border-radius: 7px 0 0 7px; }
.input-group .btn { border-radius: 0 7px 7px 0; border: 1px solid var(--gray-300); border-left: 0; }

/* Audio player slim */
audio { width: 100%; height: 36px; }

/* Phone link special */
.phone-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.phone-link:hover {
  color: var(--primary-dark);
  text-decoration: none;
}
.phone-link i { color: var(--success); }

/* ─────────────────────────────────────────────────────────────
   INTERNAL CHAT WIDGET (unified with ViciDial agent chat)
   ───────────────────────────────────────────────────────────── */
.chat-fab{
  position:fixed; right:22px; bottom:22px; z-index:1200;
  width:56px; height:56px; border-radius:50%; border:0; cursor:pointer;
  background:linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 100%);
  color:#fff; font-size:1.5rem; box-shadow:var(--shadow-lg);
  display:flex; align-items:center; justify-content:center;
  transition:transform .15s ease, box-shadow .15s ease;
}
.chat-fab:hover{ transform:translateY(-2px) scale(1.04); }
.chat-fab .badge{
  position:absolute; top:-3px; right:-3px; min-width:20px; height:20px; padding:0 5px;
  background:var(--danger); color:#fff; border-radius:10px; border:2px solid #fff;
  font-size:.7rem; font-weight:700; line-height:16px; text-align:center;
}
.chat-panel{
  position:fixed; right:22px; bottom:88px; z-index:1201;
  width:340px; max-width:calc(100vw - 44px); height:480px; max-height:calc(100vh - 130px);
  background:#fff; border:1px solid var(--gray-200); border-radius:var(--radius);
  box-shadow:var(--shadow-lg); display:none; flex-direction:column; overflow:hidden;
}
.chat-panel.open{ display:flex; animation:chatpop .16s ease; }
@keyframes chatpop{ from{ opacity:0; transform:translateY(12px) scale(.98);} to{ opacity:1; transform:none; } }
.chat-head{
  display:flex; align-items:center; justify-content:space-between; gap:8px;
  padding:12px 14px; color:#fff; font-weight:600; font-size:.95rem;
  background:linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 100%);
}
.chat-head .close{ background:transparent; border:0; color:#fff; cursor:pointer; font-size:1rem; opacity:.85; }
.chat-head .close:hover{ opacity:1; }
.chat-back-btn:hover{ opacity:.8; }
.chat-users{ overflow-y:auto; flex:1; }
.chat-users .user-row{
  display:flex; align-items:center; gap:10px; padding:10px 14px; cursor:pointer;
  border-bottom:1px solid var(--gray-100);
}
.chat-users .user-row:hover{ background:var(--gray-50); }
.chat-users .unread{
  background:var(--danger); color:#fff; border-radius:10px; min-width:20px; height:20px;
  padding:0 6px; font-size:.7rem; font-weight:700; line-height:20px; text-align:center;
}
.chat-msgs{ flex:1; overflow-y:auto; padding:12px; display:flex; flex-direction:column; gap:6px; background:var(--gray-50); }
.chat-msg{
  max-width:78%; padding:7px 11px; border-radius:12px; font-size:.88rem; line-height:1.35;
  word-wrap:break-word; position:relative;
}
.chat-msg.me{ align-self:flex-end; background:var(--primary); color:#fff; border-bottom-right-radius:3px; }
.chat-msg.them{ align-self:flex-start; background:#fff; color:var(--gray-800); border:1px solid var(--gray-200); border-bottom-left-radius:3px; }
.chat-msg .meta{ font-size:.65rem; opacity:.7; margin-top:3px; text-align:right; }
.chat-input{ display:flex; gap:6px; padding:10px; border-top:1px solid var(--gray-200); background:#fff; }
.chat-input input{
  flex:1; border:1px solid var(--gray-300); border-radius:20px; padding:8px 14px;
  font-size:.88rem; outline:none;
}
.chat-input input:focus{ border-color:var(--primary); }
.chat-input button{
  border:0; background:var(--primary); color:#fff; width:38px; height:38px; border-radius:50%;
  cursor:pointer; flex-shrink:0; display:flex; align-items:center; justify-content:center;
}
.chat-input button:hover{ background:var(--primary-dark); }
.spinner{
  display:inline-block; width:22px; height:22px; border:3px solid var(--gray-200);
  border-top-color:var(--primary); border-radius:50%; animation:spin .7s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
