/* ========================================
   DARK PREMIUM THEME FOR MyMEM
   Verze 3.0 - Vyčištěný - 15. října 2025
   ======================================== */

/* ===== DARK MODE (výchozí) ===== */
:root {
    /* Základní tmavé barvy */
    --dark-900: #0a0a0a;
    --dark-800: #1a1a1a;
    --dark-700: #2a2a2a;
    --dark-400: #666666;
    --dark-100: #cccccc;
    --white: #ffffff;
    
    /* Neonové akcenty */
    --neon-blue: #3b82f6;
    --neon-blue-glow: rgba(59, 130, 246, 0.5);
    --neon-purple: #8b5cf6;
    --neon-cyan: #06b6d4;
    --neon-pink: #ec4899;
    --neon-green: #10b981;
    --neon-orange: #f59e0b;
    --neon-red: #ef4444;
    
    /* Systémové barvy - DARK */
    --bg-primary: var(--dark-900);
    --bg-secondary: var(--dark-800);
    --bg-tertiary: var(--dark-700);
    --text-primary: var(--white);
    --text-secondary: var(--dark-100);
    --text-tertiary: var(--dark-100);
    --border-default: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(59, 130, 246, 0.5);
    --shadow-sm: 0 0 10px rgba(59, 130, 246, 0.1);
    --shadow-md: 0 0 20px rgba(59, 130, 246, 0.2);
    --shadow-lg: 0 0 30px rgba(59, 130, 246, 0.3);
    --shadow-glow: 0 0 40px var(--neon-blue-glow);
    
    /* Rozměry */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

/* ===== LIGHT MODE ===== */
body.light-mode {
    /* Světlé barvy */
    --light-50: #fafafa;
    --light-100: #f5f5f5;
    --light-300: #d4d4d4;
    --light-500: #737373;
    --light-600: #525252;
    --light-900: #171717;
    
    /* Systémové barvy - LIGHT */
    --bg-primary: var(--light-50);
    --bg-secondary: var(--white);
    --bg-tertiary: var(--light-100);
    --text-primary: var(--light-900);
    --text-secondary: var(--light-600);
    --text-tertiary: var(--light-500);
    --border-default: var(--light-300);
    --border-hover: var(--neon-blue);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

/* ===== ANIMOVANÉ GRID POZADÍ ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(var(--border-default) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-default) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* ===== GLOW EFEKTY ===== */
body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--neon-blue-glow) 0%, transparent 70%);
    filter: blur(100px);
    top: -200px;
    right: -200px;
    pointer-events: none;
    animation: float 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(100px, -100px); }
}

/* ===== ZÁKLADNÍ STYLY ===== */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===== KONTEJNERY ===== */
.container {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-default);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

/* ===== TYPOGRAFIE ===== */
h1 {
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* Logo ikona vedle nadpisu - FIXNÍ BARVY */
.logo-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    /* Žádné filtry - gradient je přímo v SVG */
    filter: none;
}

h2, h3 {
    color: var(--text-primary);
}

/* ===== TLAČÍTKA - DARK PREMIUM STYL ===== */
.btn {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border-color: var(--border-default);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.btn:hover {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: var(--border-hover);
    color: var(--neon-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

.btn:focus {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}

/* Aktivní stav */
.btn.active {
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.btn.active:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    transform: translateY(-2px) scale(1.02);
}

/* Primární tlačítko */
.btn.primary {
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.btn.primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    box-shadow: 0 0 50px var(--neon-blue-glow);
}

/* Recording stav */
.btn.recording,
#startBtn.recording {
    background: var(--neon-red);
    color: var(--white);
    border-color: transparent;
    animation: pulseGlow 1.5s infinite;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.6);
}

@keyframes pulseGlow {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 30px rgba(239, 68, 68, 0.6);
    }
    50% { 
        opacity: 0.8;
        box-shadow: 0 0 50px rgba(239, 68, 68, 0.8);
    }
}

/* ===== KATEGORIE S NEON AKCENTEM ===== */
.btn.telefon::before,
.btn.schuzka::before,
.btn.poznamka::before,
.btn.ukol::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.btn.telefon::before { 
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-blue));
    box-shadow: 0 0 10px var(--neon-cyan);
}
.btn.schuzka::before { 
    background: linear-gradient(180deg, var(--neon-purple), var(--neon-pink));
    box-shadow: 0 0 10px var(--neon-purple);
}
.btn.poznamka::before { 
    background: linear-gradient(180deg, var(--neon-orange), #fbbf24);
    box-shadow: 0 0 10px var(--neon-orange);
}
.btn.ukol::before { 
    background: linear-gradient(180deg, var(--neon-green), #059669);
    box-shadow: 0 0 10px var(--neon-green);
}

.btn.telefon:hover::before,
.btn.schuzka:hover::before,
.btn.poznamka:hover::before,
.btn.ukol:hover::before {
    width: 6px;
    box-shadow: 0 0 20px currentColor;
}

/* Aktivní stav kategorie */
.btn.category.active {
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.btn.category.active:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    transform: translateY(-2px) scale(1.02);
}

/* ===== IKONY - IMG TAGY ===== */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.icon img {
    width: 100%;
    height: 100%;
    display: block;
}

/* DARK MODE - bílé ikony pomocí filtru */
.icon img {
    filter: brightness(0) invert(1);
}

/* LIGHT MODE - černé ikony */
body.light-mode .icon img {
    filter: brightness(0);
}

/* Tlačítka - při aktivním stavu a hoveru - zachovat bílou */
.btn.active .icon img,
.btn.primary .icon img,
.btn.recording .icon img {
    filter: brightness(0) invert(1);
}

/* Hover - modrá barva ikony */
.btn:hover .icon img {
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(200deg) brightness(98%) contrast(97%);
}

/* Light mode - hover stejně modrá */
body.light-mode .btn:hover .icon img {
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(200deg) brightness(98%) contrast(97%);
}

/* Větší ikony pro kategorie */
.btn.category .icon {
    width: 24px;
    height: 24px;
}

/* Ikona pro theme toggle */
.theme-toggle .icon {
    width: 28px;
    height: 28px;
}

/* Prioritní kolečka - barevné */
.btn.priority-high .priority-dot { 
    background: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red);
}

.btn.priority-normal .priority-dot { 
    background: var(--neon-orange);
    box-shadow: 0 0 10px var(--neon-orange);
}

.btn.priority-low .priority-dot { 
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

/* ===== INDIKÁTOR ===== */
.indicator {
    background-color: var(--dark-400);
}

.indicator.active {
    background-color: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red);
    animation: pulse 1s infinite;
}

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

/* ===== FORMULÁŘOVÉ PRVKY ===== */
.input,
.textarea {
    border-color: var(--border-default);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.input:focus,
.textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.input::placeholder,
.textarea::placeholder {
    color: var(--text-tertiary);
}

/* ===== INFORMAČNÍ BLOKY ===== */
.status-bar {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    border: 1px solid var(--border-default);
}

.status-bar.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.status-bar.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--neon-red);
    border-color: var(--neon-red);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.storage-info {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    border: 1px solid var(--border-default);
}

#storagePercent {
    font-weight: bold;
    color: var(--neon-blue);
}

/* ===== TOGGLE SEKCE ===== */
.toggle-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.toggle-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

/* ===== HISTORIE POLOŽKA ===== */
.history-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    border-left-width: 4px;
    transition: all 0.3s ease;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* Barevné akcenty pro typy */
.history-item.telefon { 
    border-left-color: var(--neon-cyan);
    box-shadow: -2px 0 10px rgba(6, 182, 212, 0.3);
}
.history-item.schuzka { 
    border-left-color: var(--neon-purple);
    box-shadow: -2px 0 10px rgba(139, 92, 246, 0.3);
}
.history-item.poznamka { 
    border-left-color: var(--neon-orange);
    box-shadow: -2px 0 10px rgba(245, 158, 11, 0.3);
}
.history-item.ukol { 
    border-left-color: var(--neon-green);
    box-shadow: -2px 0 10px rgba(16, 185, 129, 0.3);
}

.history-item-header {
    color: var(--text-secondary);
}

.history-item-date {
    color: var(--text-tertiary);
}

.history-item-preview {
    color: var(--text-primary);
}

.history-item-full-text {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
}

.history-empty {
    color: var(--text-tertiary);
}

/* ===== FILTRY ===== */
.filter-label {
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn.filter {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--border-default);
}

.btn.filter.active {
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.btn.filter:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--neon-blue);
}

/* ===== FILTER SUMMARY ===== */
.filter-summary {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--neon-orange);
    border-radius: var(--radius-md);
}

.summary-text,
.active-filters {
    color: var(--neon-orange);
}

/* ===== MODÁLNÍ OKNA ===== */
.gdpr-modal,
.export-modal,
.email-modal {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.gdpr-modal-content,
.export-modal-content,
.email-modal-content {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--neon-blue-glow);
    border: 1px solid var(--border-default);
}

.gdpr-modal h3,
.export-modal h3,
.email-modal h3 {
    color: var(--text-primary);
    font-weight: 600;
}

/* ===== OPTIONS ===== */
.options-content {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--neon-orange);
    border-radius: var(--radius-md);
}

.options-warning {
    color: var(--neon-orange);
}

/* ===== FOOTER ===== */
.footer {
    color: var(--text-tertiary);
    border-top: 1px solid var(--border-default);
}

.footer a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--neon-blue);
}

.gdpr-link {
    color: var(--text-secondary);
    cursor: pointer;
}

.gdpr-link:hover {
    color: var(--neon-blue);
}

/* ===== DARK/LIGHT TOGGLE TLAČÍTKO ===== */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-default);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
    box-shadow: var(--shadow-md);
}

.theme-toggle:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--neon-blue);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.theme-toggle:active {
    transform: scale(0.95);
}

/* ===== LANGUAGE TOGGLE TLAČÍTKO ===== */
.lang-toggle {
    position: fixed;
    top: 20px;
    right: 85px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-default);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.lang-toggle:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--neon-blue);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.lang-toggle:active {
    transform: scale(0.95);
}

#langText {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

/* ===== USER INFO TOGGLE TLAČÍTKO ===== */
.user-toggle {
    position: fixed;
    top: 20px;
    right: 150px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-default);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.user-toggle:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--neon-blue);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.user-toggle:active {
    transform: scale(0.95);
}

/* Správné barvy pro priority dots ve filtrech */
.priority-dot.priority-high {
    background-color: var(--neon-red);
    box-shadow: 0 0 8px var(--neon-red);
}

.priority-dot.priority-normal {
    background-color: var(--neon-orange);
    box-shadow: 0 0 8px var(--neon-orange);
}

.priority-dot.priority-low {
    background-color: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
}

/* Checkbox styling */
.insert-mode-toggle input[type="checkbox"] {
    accent-color: var(--neon-blue);
}

.insert-mode-toggle .toggle-label {
    color: var(--text-secondary);
    user-select: none;
}

/* Oprava pro rozbalené filtry */
.filters-toggle.expanded .toggle-arrow,
.history-toggle.expanded .toggle-arrow,
.options-toggle.expanded .toggle-arrow {
    transform: rotate(180deg);
}

/* Tlačítka akcí v historii */
.history-item-actions .btn {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-default);
}

.history-item-actions .btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
}

/* Oprava pro zobrazení filtrů */
.filters-container.expanded {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
}

/* ===== ANIMACE A PŘECHODY ===== */
button,
.btn,
input,
textarea,
.toggle-section,
.history-item {
    transition: all 0.3s ease;
}

/* ===== FOCUS STATES PRO PŘÍSTUPNOST ===== */
button:focus,
.btn:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}

/* ===== ZAKÁZANÉ STAVY ===== */
button:disabled,
.btn:disabled,
input:disabled,
textarea:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.5);
}

/* ===== RESPONZIVNÍ ÚPRAVA - NOVÁ OPTIMALIZACE ===== */

/* TABLETY (601px - 768px) */
@media (max-width: 768px) and (min-width: 601px) {
    .user-toggle {
        top: 15px;
        right: 140px;
        width: 52px;
        height: 52px;
    }
    
    .lang-toggle {
        top: 15px;
        right: 78px;
        width: 52px;
        height: 52px;
    }
    
    .theme-toggle {
        top: 15px;
        right: 15px;
        width: 52px;
        height: 52px;
    }
    
    #langText {
        font-size: 15px;
    }
}

/* VELKÉ MOBILY (481px - 600px) */
@media (max-width: 600px) and (min-width: 481px) {
    .user-toggle {
        top: 12px;
        right: 130px;
        width: 50px;
        height: 50px;
    }
    
    .lang-toggle {
        top: 12px;
        right: 72px;
        width: 50px;
        height: 50px;
    }
    
    .theme-toggle {
        top: 12px;
        right: 12px;
        width: 50px;
        height: 50px;
    }
    
    #langText {
        font-size: 14px;
    }
    
    .theme-toggle .icon {
        width: 24px;
        height: 24px;
    }
}

/* MALÉ MOBILY (do 480px) */
@media (max-width: 480px) {
    /* Stack toggle tlačítka vertikálně vpravo */
    .user-toggle {
        top: 10px;
        right: 10px;
        width: 48px;
        height: 48px;
    }
    
    .lang-toggle {
        top: 68px;
        right: 10px;
        width: 48px;
        height: 48px;
    }
    
    .theme-toggle {
        top: 126px;
        right: 10px;
        width: 48px;
        height: 48px;
    }
    
    #langText {
        font-size: 13px;
    }
    
    .theme-toggle .icon {
        width: 22px;
        height: 22px;
    }
    
    .user-toggle .icon {
        width: 22px;
        height: 22px;
    }
    
    /* H1 s ikonou na mobilu - menší */
    h1 {
        font-size: 24px;
        gap: 12px;
    }
    
    .logo-icon {
        width: 48px;
        height: 48px;
    }
}

/* EXTRA MALÉ MOBILY (do 360px) */
@media (max-width: 360px) {
    .user-toggle,
    .lang-toggle,
    .theme-toggle {
        width: 44px;
        height: 44px;
    }
    
    .lang-toggle {
        top: 64px;
    }
    
    .theme-toggle {
        top: 118px;
    }
    
    #langText {
        font-size: 12px;
    }
    
    .theme-toggle .icon,
    .user-toggle .icon {
        width: 20px;
        height: 20px;
    }
    
    h1 {
        font-size: 20px;
        gap: 10px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
}

/* LANDSCAPE ORIENTACE - redukce animací */
@media (max-width: 768px) and (orientation: landscape) {
    /* Vypnout animované pozadí v landscape na mobilu */
    body::before {
        animation: none;
    }
    
    body::after {
        animation: none;
    }
    
    /* Toggle tlačítka menší v landscape */
    .user-toggle,
    .lang-toggle,
    .theme-toggle {
        width: 44px;
        height: 44px;
    }
    
    .user-toggle {
        top: 8px;
        right: 10px;
    }
    
    .lang-toggle {
        top: 60px;
        right: 10px;
    }
    
    .theme-toggle {
        top: 112px;
        right: 10px;
    }
}
