:root {
    --primary: #ff8900;
    --primary-glow: rgba(255, 137, 0, 0.4);
    --accent: #4ade80;
    --bg-dark: #080a08;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.5);
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    line-height: 1.4;
    min-height: 100vh;
}

/* Анімований фон */
.bg-glow {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% -20%, #1a201a 0%, var(--bg-dark) 80%);
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-glow);
    filter: blur(80px);
    border-radius: 50%;
    animation: move 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.3;
}

@keyframes move {
    from { transform: translate(-10%, -10%) scale(0.9); }
    to { transform: translate(110%, 110%) scale(1.1); }
}

/* Анімації */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideUpFab {
    from { opacity: 0; transform: translateY(50px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Авторизація */
#auth-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, backdrop-filter 0.5s ease;
}

.auth-modal {
    background: linear-gradient(180deg, #121412 0%, #080a08 100%);
    border: 1px solid var(--border);
    padding: 40px 24px;
    border-radius: 32px;
    text-align: center;
    max-width: 380px;
    width: 90%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.auth-icon-wrapper {
    background: var(--primary);
    width: 64px; 
    height: 64px; 
    border-radius: 22px; 
    margin: 0 auto 24px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 10px 25px var(--primary-glow);
    color: black;
    font-size: 32px;
}

.auth-modal h2 {
    font-family: "Unbounded", sans-serif;
    margin-bottom: 12px;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.google-btn {
    background: white;
    color: black;
    padding: 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    width: 100%;
    font-family: inherit;
    transition: all 0.2s ease;
}

.google-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.2);
}

.google-btn:active { 
    transform: scale(0.96) translateY(0); 
    box-shadow: none;
}

/* Навігація */
.nav {
    position: relative;
    padding: 8px 24px 8px;
    display: flex;
    justify-content: space-between;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.5px;
    color: white;
}

.logo-box i {
    font-size: 28px;
    color: var(--primary);
    filter: drop-shadow(0 0 15px var(--primary-glow));
}

/* Контейнер */
.container {
    max-width: 800px;
    margin: 24px auto;
    padding: 0 20px;
    padding-bottom: 100px; /* Відступ під нижнє меню */
}

/* Прогрес */
.header-section {
    margin-bottom: 32px;
    animation: fadeIn 0.6s ease-out forwards;
}

.header-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 32px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
}

.progress-stat {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
}

.progress-value {
    font-family: "Unbounded", sans-serif;
    font-size: 32px;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
    transition: color 0.5s ease, text-shadow 0.5s ease;
}

.progress-track {
    width: 100%;
    height: 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    margin-top: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    width: 0%;
    transition: width 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 15px var(--primary-glow);
}

.progress-complete .progress-bar {
    background: linear-gradient(90deg, var(--accent), #22c55e);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.6);
}

.progress-complete .progress-value {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}

/* Статус-бар */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 222, 128, 0.1);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    transition: all 0.3s ease;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

/* Повідомлення рекрутера */
.recruiter-msg {
    background: rgba(255, 137, 0, 0.08);
    border: 1px solid rgba(255, 137, 0, 0.2);
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 24px;
    animation: fadeIn 0.8s ease-out forwards;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.recruiter-msg:hover {
    transform: translateY(-2px);
}

.recruiter-header {
    display: flex;
    gap: 16px;
    align-items: center;
}

.recruiter-avatar {
    width: 54px;
    height: 54px;
    background: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 137, 0, 0.4);
    color: black;
    font-size: 28px;
}

/* Кнопки зв'язку та карти */
.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(74, 222, 128, 0.15);
    color: var(--accent);
    border: 1px solid rgba(74, 222, 128, 0.3);
    text-decoration: none;
    padding: 18px;
    border-radius: 20px;
    font-weight: 800;
    font-family: "Unbounded", sans-serif;
    font-size: 12px;
    transition: all 0.3s ease;
    width: 100%;
}

.call-btn i {
    font-size: 20px;
}

.call-btn:hover {
    background: var(--accent);
    color: black;
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.3);
    transform: translateY(-2px);
}

/* Месенджери */
.messengers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.messenger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 11px;
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.messengers-grid .messenger-btn:last-child {
    grid-column: span 2;
}

.messenger-btn.tg {
    background: rgba(0, 136, 204, 0.15);
    border-color: #0088cc;
    color: #0088cc;
}

.messenger-btn.vb {
    background: rgba(115, 96, 242, 0.15);
    border-color: #7360f2;
    color: #7360f2;
}

.messenger-btn.wa {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25D366;
    color: #25D366;
}

/* Верхні таби (Top Tabs) */
.top-tabs {
    display: flex;
    background: rgba(255,255,255,0.05);
    padding: 4px;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.top-tab-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: "Unbounded", sans-serif;
    font-size: 11px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.top-tab-btn i {
    font-size: 18px;
}

.top-tab-btn.active {
    background: var(--primary);
    color: black;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 137, 0, 0.2);
}

/* Нижнє меню (Bottom Nav) */
.bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(18, 20, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 900;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 500px;
    margin: 0 auto;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text-muted);
    background: transparent;
    border: none;
    font-family: "Unbounded", sans-serif;
    font-size: 9px;
    cursor: pointer;
    padding: 8px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.nav-item i {
    font-size: 22px;
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

.nav-item.active {
    color: var(--primary);
    background: rgba(255, 137, 0, 0.1);
}

.nav-item.active i {
    transform: translateY(-2px);
    text-shadow: 0 0 15px var(--primary-glow);
}

/* Документи */
.doc-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.doc-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    opacity: 0;
    animation: slideUpFade 0.5s ease-out forwards;
}

.doc-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.doc-item.done {
    border-color: rgba(74, 222, 128, 0.3);
    background: rgba(74, 222, 128, 0.05);
}

.checkbox-trigger {
    width: 38px;
    height: 38px;
    border: 2px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: black;
}

.done .checkbox-trigger {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.4);
}

.checkbox-trigger i {
    font-size: 20px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.done .checkbox-trigger i {
    opacity: 1;
    transform: scale(1);
}

/* Стилі для N/A (Немає) */
.doc-item.na {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    border-style: dashed;
}

.doc-item.na .doc-title {
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.7;
}

.doc-item.na .checkbox-trigger {
    border-color: var(--text-muted);
    color: var(--text-muted);
    background: transparent;
    transform: none;
    box-shadow: none;
}

.na-trigger {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}
.na-trigger:hover { border-color: var(--danger); color: var(--danger); background: rgba(239, 68, 68, 0.1); transform: scale(1.1); }
.na-trigger.active { background: var(--danger); color: white; border-color: var(--danger); box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3); transform: rotate(90deg); }

.doc-text-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.opt-text {
    font-size: 10px;
    color: var(--text-muted);
    font-family: "Unbounded", sans-serif;
    opacity: 0.8;
}

.doc-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.doc-title {
    font-weight: 600;
    font-size: 16px;
    color: rgba(255,255,255,0.95);
    transition: all 0.3s ease;
}

.done .doc-title {
    color: var(--text-muted);
    text-decoration: line-through;
}

.info-trigger {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(255, 137, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    font-size: 22px;
}

.info-trigger:hover {
    transform: scale(1.15) rotate(10deg);
    background: var(--primary);
    color: black;
    box-shadow: 0 5px 15px rgba(255, 137, 0, 0.3);
}

/* --- НОТАТКИ --- */
#notes-view {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.page-title {
    font-family: "Unbounded", sans-serif;
    font-size: 24px;
    margin-bottom: 24px;
    color: white;
}

.folders-scroll {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 16px;
    scrollbar-width: none; /* Firefox */
}
.folders-scroll::-webkit-scrollbar {
    display: none; /* Safari/Chrome */
}

.folder-pill {
    padding: 10px 14px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-muted);
    font-family: "Unbounded", sans-serif;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.folder-pill-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.folder-delete-icon {
    opacity: 0.5;
    transition: 0.2s;
    padding: 4px;
    border-radius: 50%;
}
.folder-delete-icon:hover {
    opacity: 1;
    color: var(--danger);
    background: rgba(239, 68, 68, 0.1);
}

.folder-pill.active {
    background: var(--primary);
    color: black;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 137, 0, 0.3);
}

.folder-pill:hover:not(.active) {
    background: rgba(255,255,255,0.1);
}

.folder-add {
    border: 1px dashed rgba(255,255,255,0.3);
    background: transparent;
    padding: 10px 18px;
}

.folder-add:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.notes-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.note-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    animation: slideUpFade 0.4s ease-out forwards;
}

.note-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.note-card-title {
    font-weight: 700;
    font-size: 16px;
    color: white;
    font-family: "Unbounded", sans-serif;
    padding-right: 30px;
}

.note-card-date {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.note-card-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    white-space: pre-wrap;
}

.note-delete-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.note-delete-btn:hover {
    color: var(--danger);
    transform: scale(1.1);
}

.add-note-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.3);
    color: white;
    padding: 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-family: "Unbounded", sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-note-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.empty-notes {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}
.empty-notes i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* Попапи та Модалки */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(15px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-card {
    background: #121412;
    border: 1px solid var(--primary);
    border-radius: 32px;
    padding: 32px 24px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 137, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-card h3 {
    font-family: "Unbounded", sans-serif;
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--primary);
}

.dark-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: white;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 16px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dark-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}

.dark-textarea {
    resize: none;
    min-height: 120px;
}

.btn-row {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.primary-btn, .secondary-btn, .danger-btn {
    flex: 1;
    padding: 16px;
    border-radius: 16px;
    font-weight: 800;
    font-family: "Unbounded", sans-serif;
    font-size: 11px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-btn {
    background: var(--primary);
    color: black;
    box-shadow: 0 10px 20px rgba(255, 137, 0, 0.2);
}

.primary-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(255, 137, 0, 0.4); }

.secondary-btn {
    background: rgba(255,255,255,0.1);
    color: white;
}
.secondary-btn:hover { background: rgba(255,255,255,0.2); }

.danger-btn {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: none;
}
.danger-btn:hover {
    background: var(--danger);
    color: white;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
    transform: translateY(-2px);
}

.confirm-icon {
    font-size: 48px;
    color: var(--danger);
    margin-bottom: 16px;
}

/* Карта */
.map-card {
    margin-top: 32px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 32px 28px;
    text-align: center;
    transition: transform 0.3s ease;
}

.map-card:hover {
    transform: translateY(-2px);
}

.map-icon-wrapper {
    background: rgba(255,137,0,0.1); 
    width: 48px; 
    height: 48px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 16px;
    color: var(--primary);
    font-size: 24px;
}

.map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    color: black;
    text-decoration: none;
    padding: 20px;
    border-radius: 20px;
    font-weight: 800;
    font-family: "Unbounded", sans-serif;
    font-size: 12px;
    transition: all 0.3s ease;
}

.map-btn i {
    font-size: 20px;
}

.map-btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 25px rgba(255,255,255,0.2); 
}

/* Фініш */
.finish-fab {
    position: fixed;
    bottom: 110px; /* Піднято вище меню */
    left: 20px;
    right: 20px;
    background: var(--accent);
    color: black;
    padding: 22px;
    border-radius: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 900;
    font-family: "Unbounded", sans-serif;
    font-size: 14px;
    box-shadow: 0 20px 50px rgba(74, 222, 128, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.finish-fab i {
    font-size: 24px;
}

.finish-fab:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 25px 55px rgba(74, 222, 128, 0.6);
}

.finish-fab:active {
    transform: translateY(0) scale(0.98);
}

.reset-btn {
    margin-top: 40px; 
    text-align: center; 
    color: var(--text-muted); 
    font-size: 12px; 
    text-decoration: underline; 
    opacity: 0.5; 
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.reset-btn:hover {
    opacity: 1;
}
