/* ============================================================
   NovaLex Kanzleisoftware — Stylesheet
   ============================================================ */

/* CSS Custom Properties */
:root {
    --sidebar-width: 260px;
    --sidebar-collapsed: 70px;
    --topbar-height: 60px;

    /* Farben */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #eff6ff;
    --secondary: #64748b;
    --success: #16a34a;
    --warning: #d97706;
    --danger: #dc2626;
    --info: #0891b2;

    /* Sidebar */
    --sidebar-bg: #0f172a;
    --sidebar-text: #94a3b8;
    --sidebar-active: #2563eb;
    --sidebar-hover: #1e293b;
    --sidebar-label: #475569;

    /* Content */
    --bg: #f1f5f9;
    --bg-card: #ffffff;
    --text: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --border-focus: #2563eb;

    /* Schatten */
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.12);

    /* Radius */
    --radius: 10px;
    --radius-sm: 6px;

    /* Transitions */
    --transition: 0.2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); display: flex; min-height: 100vh; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
    width: var(--sidebar-width);
    background: var(--sidebar-bg);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    z-index: 1000;
    transition: width var(--transition);
    overflow: hidden;
}

.sidebar.collapsed { width: var(--sidebar-collapsed); }
.sidebar.collapsed .logo-text,
.sidebar.collapsed .nav-label,
.sidebar.collapsed .nav-section-label,
.sidebar.collapsed .user-details,
.sidebar.collapsed .nav-badge { display: none; }
.sidebar.collapsed .sidebar-logo { justify-content: center; padding: 1rem; }
.sidebar.collapsed .nav-item { justify-content: center; padding: .75rem; }
.sidebar.collapsed .nav-icon { margin: 0; }

/* Logo */
.sidebar-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
    flex-shrink: 0;
}
.logo-icon { font-size: 1.6rem; }
.logo-name { display: block; font-size: 1.1rem; font-weight: 700; color: #f1f5f9; letter-spacing: .5px; }
.logo-sub { display: block; font-size: .7rem; color: var(--sidebar-text); text-transform: uppercase; letter-spacing: 1px; }

/* Nav */
.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: .75rem 0;
    scrollbar-width: thin;
    scrollbar-color: #1e293b transparent;
}
.nav-section-label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--sidebar-label);
    padding: .9rem 1.25rem .3rem;
    font-weight: 600;
}
.nav-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .65rem 1.25rem;
    color: var(--sidebar-text);
    border-radius: var(--radius-sm);
    margin: .1rem .5rem;
    transition: background var(--transition), color var(--transition);
    position: relative;
    font-size: .9rem;
}
.nav-item:hover { background: var(--sidebar-hover); color: #f1f5f9; text-decoration: none; }
.nav-item.active { background: var(--primary); color: #fff; }
.nav-item.active .nav-icon { color: #fff; }
.nav-icon { font-size: 1rem; width: 20px; text-align: center; flex-shrink: 0; }
.nav-label { flex: 1; font-weight: 500; }
.nav-badge {
    background: var(--danger);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: .15rem .45rem;
    border-radius: 999px;
    min-width: 18px;
    text-align: center;
}

/* Sidebar Footer */
.sidebar-footer {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}
.user-info { display: flex; align-items: center; gap: .6rem; flex: 1; min-width: 0; }
.user-avatar {
    width: 36px; height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 700; color: #fff;
    flex-shrink: 0;
}
.user-name { font-size: .82rem; color: #f1f5f9; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-role { font-size: .7rem; color: var(--sidebar-text); }
.btn-logout {
    color: var(--sidebar-text);
    font-size: 1.1rem;
    padding: .3rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition);
    flex-shrink: 0;
}
.btn-logout:hover { color: var(--danger); }

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: margin-left var(--transition);
}
body:has(.sidebar.collapsed) .main-content { margin-left: var(--sidebar-collapsed); }

/* Topbar */
.topbar {
    height: var(--topbar-height);
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1.5rem;
    position: sticky; top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.sidebar-toggle {
    font-size: 1.2rem;
    color: var(--text-muted);
    padding: .4rem;
    border-radius: var(--radius-sm);
}
.sidebar-toggle:hover { background: var(--bg); }
.topbar-title { font-size: 1rem; font-weight: 600; color: var(--text); flex: 1; }
.topbar-date { font-size: .82rem; color: var(--text-muted); }

.content-wrapper { padding: 1.75rem; flex: 1; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
    flex-wrap: wrap;
}
.card-title { font-size: 1rem; font-weight: 600; color: var(--text); }
.card-body { padding: 1.5rem; }
.card-footer { padding: .9rem 1.5rem; border-top: 1px solid var(--border); background: #f8fafc; }

/* ============================================================
   STAT CARDS (Dashboard)
   ============================================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}
.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.4rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: box-shadow var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow); }
.stat-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.stat-icon.blue   { background: #eff6ff; color: var(--primary); }
.stat-icon.green  { background: #f0fdf4; color: var(--success); }
.stat-icon.yellow { background: #fffbeb; color: var(--warning); }
.stat-icon.red    { background: #fef2f2; color: var(--danger); }
.stat-icon.teal   { background: #ecfeff; color: var(--info); }
.stat-value { font-size: 1.75rem; font-weight: 700; line-height: 1.2; color: var(--text); }
.stat-label { font-size: .82rem; color: var(--text-muted); margin-top: .2rem; }
.stat-sub { font-size: .78rem; color: var(--text-muted); margin-top: .4rem; }
.stat-sub.up   { color: var(--success); }
.stat-sub.down { color: var(--danger); }

/* ============================================================
   TABLES
   ============================================================ */
.table-wrapper { overflow-x: auto; }
table {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem;
}
thead th {
    background: #f8fafc;
    color: var(--text-muted);
    font-weight: 600;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .75rem 1rem;
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
    text-align: left;
}
tbody td {
    padding: .85rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: #f8fafc; }
.table-actions { display: flex; gap: .4rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: .875rem;
    font-weight: 500;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    line-height: 1.4;
}
.btn:hover { text-decoration: none; }
.btn-sm { padding: .3rem .65rem; font-size: .8rem; }
.btn-lg { padding: .7rem 1.4rem; font-size: 1rem; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }

.btn-secondary { background: #f1f5f9; color: var(--text); border-color: var(--border); }
.btn-secondary:hover { background: #e2e8f0; color: var(--text); }

.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #15803d; color: #fff; }

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #b91c1c; color: #fff; }

.btn-warning { background: var(--warning); color: #fff; }
.btn-warning:hover { background: #b45309; color: #fff; }

.btn-outline { background: transparent; border-color: var(--border); color: var(--text-muted); }
.btn-outline:hover { background: #f1f5f9; color: var(--text); }

.btn-icon { padding: .4rem; border-radius: var(--radius-sm); }

/* ============================================================
   FORMS
   ============================================================ */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.form-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group.span-2 { grid-column: span 2; }
.form-group.span-3 { grid-column: span 3; }
.form-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
}
.form-label .req { color: var(--danger); margin-left: .2rem; }
.form-control, .form-select, .form-textarea {
    padding: .55rem .85rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .875rem;
    color: var(--text);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
    font-family: inherit;
    width: 100%;
}
.form-control:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-hint { font-size: .75rem; color: var(--text-muted); }
.form-row { display: flex; gap: 1rem; align-items: flex-end; }
.form-section {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}
.form-section-title { font-size: .9rem; font-weight: 600; color: var(--text); margin-bottom: 1.25rem; }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: .2rem .6rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
    white-space: nowrap;
}
.badge-primary   { background: #dbeafe; color: #1d4ed8; }
.badge-success   { background: #dcfce7; color: #15803d; }
.badge-warning   { background: #fef3c7; color: #92400e; }
.badge-danger    { background: #fee2e2; color: #b91c1c; }
.badge-info      { background: #cffafe; color: #0e7490; }
.badge-secondary { background: #f1f5f9; color: #475569; }

/* ============================================================
   ALERTS
   ============================================================ */
.alert {
    padding: .85rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .875rem;
    position: relative;
}
.alert-success  { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }
.alert-danger   { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.alert-warning  { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert-info     { background: #eff6ff; border: 1px solid #bfdbfe; color: #1d4ed8; }
.alert-close { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); font-size: 1.2rem; color: currentColor; opacity: .6; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.page-header-left { display: flex; flex-direction: column; gap: .25rem; }
.page-header-title { font-size: 1.5rem; font-weight: 700; color: var(--text); }
.page-header-sub { font-size: .875rem; color: var(--text-muted); }
.page-header-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }

/* ============================================================
   DETAIL VIEW
   ============================================================ */
.detail-row {
    display: flex;
    gap: .5rem;
    padding: .6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .875rem;
}
.detail-row:last-child { border-bottom: none; }
.detail-label { width: 180px; flex-shrink: 0; color: var(--text-muted); font-weight: 500; }
.detail-value { flex: 1; color: var(--text); }

/* ============================================================
   TABS
   ============================================================ */
.tabs { border-bottom: 2px solid var(--border); display: flex; gap: .25rem; margin-bottom: 1.5rem; }
.tab {
    padding: .6rem 1rem;
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color var(--transition), border-color var(--transition);
    cursor: pointer;
    text-decoration: none;
}
.tab:hover { color: var(--primary); text-decoration: none; }
.tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============================================================
   CALENDAR
   ============================================================ */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.calendar-header-cell {
    background: #f8fafc;
    text-align: center;
    padding: .6rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}
.calendar-cell {
    background: var(--bg-card);
    min-height: 90px;
    padding: .4rem;
    position: relative;
}
.calendar-cell.other-month { background: #f8fafc; }
.calendar-cell.today { background: #eff6ff; }
.calendar-day-num {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: .25rem;
}
.calendar-cell.today .calendar-day-num {
    background: var(--primary);
    color: #fff;
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.cal-event {
    font-size: .7rem;
    padding: .15rem .4rem;
    border-radius: 3px;
    margin-bottom: .15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-bar {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.search-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 200px;
}
.search-input-wrapper .search-icon {
    position: absolute;
    left: .75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}
.search-input {
    width: 100%;
    padding: .55rem .85rem .55rem 2.2rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .875rem;
    background: #fff;
    transition: border-color var(--transition);
}
.search-input:focus { outline: none; border-color: var(--primary); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    gap: .25rem;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}
.page-btn {
    padding: .4rem .75rem;
    border-radius: var(--radius-sm);
    font-size: .875rem;
    color: var(--text-muted);
    border: 1px solid var(--border);
    background: #fff;
    transition: all var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.25rem;
    position: relative;
}
.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 36px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.timeline-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
}
.timeline-body { flex: 1; }
.timeline-title { font-size: .875rem; font-weight: 600; color: var(--text); }
.timeline-time { font-size: .75rem; color: var(--text-muted); }
.timeline-desc { font-size: .82rem; color: var(--text-muted); margin-top: .2rem; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
}
.modal-overlay.hidden { display: none; }
.modal {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}
.modal-title { font-size: 1.1rem; font-weight: 600; }
.modal-close { font-size: 1.3rem; color: var(--text-muted); }
.modal-body { padding: 1.5rem; }
.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex; gap: .75rem; justify-content: flex-end;
}

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex; align-items: center; justify-content: center;
}
.login-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
}
.login-logo { text-align: center; margin-bottom: 2rem; }
.login-logo .logo-icon-lg { font-size: 3rem; display: block; }
.login-logo h1 { font-size: 1.8rem; font-weight: 800; color: var(--text); letter-spacing: -1px; margin-top: .5rem; }
.login-logo p { color: var(--text-muted); font-size: .875rem; margin-top: .25rem; }
.login-footer { text-align: center; margin-top: 1.5rem; font-size: .78rem; color: var(--text-muted); }

/* ============================================================
   INVOICE PRINT
   ============================================================ */
@media print {
    .sidebar, .topbar, .page-header-actions, .btn, .no-print { display: none !important; }
    .main-content { margin-left: 0 !important; }
    .content-wrapper { padding: 0 !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .sidebar { width: var(--sidebar-collapsed); }
    .sidebar .logo-text, .sidebar .nav-label, .sidebar .nav-section-label,
    .sidebar .user-details, .sidebar .nav-badge { display: none; }
    .sidebar .sidebar-logo { justify-content: center; padding: 1rem; }
    .sidebar .nav-item { justify-content: center; padding: .75rem; }
    .sidebar .nav-icon { margin: 0; }
    .main-content { margin-left: var(--sidebar-collapsed); }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .content-wrapper { padding: 1rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .form-grid, .form-grid-3 { grid-template-columns: 1fr; }
    .form-group.span-2, .form-group.span-3 { grid-column: span 1; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-muted { color: var(--text-muted); }
.text-sm { font-size: .82rem; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.w-100 { width: 100%; }
.hidden { display: none !important; }
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: .4; }
.empty-state p { font-size: .9rem; }
hr { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.tag {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .15rem .5rem;
    background: #f1f5f9;
    border-radius: 4px;
    font-size: .75rem;
    color: var(--text-muted);
}
.progress-bar-wrap { background: #e2e8f0; border-radius: 999px; height: 6px; overflow: hidden; }
.progress-bar { height: 100%; border-radius: 999px; background: var(--primary); transition: width .3s ease; }
