/* Time Slider - Modern historical timeline interface */

.time-slider-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px; /* Increased height slightly to accommodate selector */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.85));
    z-index: 999;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
}

/* Theme Selector styles */
.theme-selector-container {
    position: absolute;
    top: -50px;
    right: 20px; /* Positioned on the right side above time circle */
    width: 200px;
    text-align: center;
    z-index: 1000;
}

.theme-selector {
    width: 100%;
    padding: 8px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.theme-selector:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(0, 0, 0, 0.8);
}

.theme-selector option {
    background-color: #222;
    color: white;
    padding: 8px;
}

/* Improved tooltip for theme description */
.theme-description-tooltip {
    position: absolute;
    top: -80px; /* Positioned higher to avoid overlap */
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 13px;
    max-width: 300px;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1010;
    text-align: left;
    pointer-events: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(99, 198, 255, 0.3);
    line-height: 1.4;
    transform: translateY(-10px); /* Move tooltip up slightly */
}

/* Only show tooltip on selector hover */
.theme-selector-container:hover .theme-description-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Disabled time slider styles - Enhanced to fully block interactions while preserving theme selector functionality */
.time-slider-container.theme-active {
    pointer-events: none; /* Block all interactions with the slider */
}

/* Explicitly enable pointer events for the theme selector even when the slider is disabled */
.time-slider-container.theme-active .theme-selector-container,
.time-slider-container.theme-active .theme-selector,
.time-slider-container.theme-active .theme-description-tooltip {
    pointer-events: auto; /* Override the parent container's pointer-events: none */
    opacity: 1;
}

.time-slider-container.theme-active .time-node,
.time-slider-container.theme-active .decade-sector,
.time-slider-container.theme-active .year-btn,
.time-slider-container.theme-active .time-slider-track,
.time-slider-container.theme-active .year-zero-marker {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.time-slider-container.hidden {
    transform: translateY(100px); /* Match container height + padding */
}

.time-slider-track {
    position: relative;
    width: calc(100% - 120px);
    height: 4px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(99, 198, 255, 0.3), rgba(255, 255, 255, 0.1));
    margin: 0 60px;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(99, 198, 255, 0.3);
}

/* Add tick marks to the time slider track for visual reference */
.time-slider-track::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 10px;
    background-image: repeating-linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.1) 1px, 
        transparent 1px, 
        transparent 5%);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

/* Styles for Century/Ancient/Future Nodes */
.time-node {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 2px solid #63c6ff;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    position: absolute; /* Already absolute, but explicitly stating */
}

/* Add a subtle pulse animation to make nodes more noticeable */
@keyframes nodePulse {
    0% { box-shadow: 0 0 0 0 rgba(99, 198, 255, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(99, 198, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 198, 255, 0); }
}

.time-node::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    animation: nodePulse 2s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.time-node:hover::before, 
.time-node.active::before {
    opacity: 1;
}

.time-node:hover, .time-node.active {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #63c6ff, #3a7acc);
    border: 2px solid #ffffff;
    box-shadow: 0 0 12px rgba(99, 198, 255, 0.9);
    z-index: 3; /* Ensure active/hovered node is above others */
}

.time-node-label {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    background: rgba(13, 28, 42, 0.7);
    padding: 3px 8px;
    border-radius: 10px;
    border: 1px solid rgba(99, 198, 255, 0.4);
}

.time-node:hover .time-node-label,
.time-node.active .time-node-label { /* Show label always when active, or on hover */
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.century-info {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #63c6ff;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    opacity: 0.7;
    pointer-events: none;
    background: rgba(13, 28, 42, 0.7);
    padding: 2px 6px;
    border-radius: 8px;
    border: 1px solid rgba(99, 198, 255, 0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.time-node:hover .century-info,
.time-node.active .century-info {
    opacity: 1;
    transform: translateX(-50%) translateY(-3px);
}

/* Time Display Circle */
.time-display {
    position: absolute;
    right: 20px;
    bottom: 15px;
    width: 95px; /* Increased from 80px */
    height: 95px; /* Increased from 80px */
    border-radius: 50%;
    background: linear-gradient(135deg, #2c5d9e, #143b6b, #071a33);
    border: 2px solid #63c6ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    z-index: 5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    padding-top: 5px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

/* Static inner glow effect (not animated) */
.time-display::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #63c6ff, transparent, #3a7acc, transparent);
    z-index: -1;
    opacity: 0.6;
}

/* Apply highlight effect when time changes */
.time-display.time-changed {
    transform: scale(1.1);
    border-color: #ffffff;
    box-shadow: 
        0 0 20px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(99, 198, 255, 0.7);
}

.time-display .year {
    font-size: 1.4em;
    display: block;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.time-display .era {
    font-size: 0.7em;
    display: block;
    margin-top: 2px;
    opacity: 0.9;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #87cefa, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

/* Remove the animation keyframes we no longer need */
@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Remove the timeDisplayPulse animation */

/* Year Zero Marker - Making it more visually distinctive */
.year-zero-marker {
    position: absolute;
    width: 6px;
    height: 25px;
    background: linear-gradient(to bottom, rgb(187, 60, 255), rgb(113, 9, 197));
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    box-shadow: 
        0 0 10px rgba(187, 60, 255, 0.6),
        0 0 20px rgba(113, 9, 197, 0.4);
    border-radius: 3px;
}

.year-zero-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgb(187, 60, 255);
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    text-shadow: 0 0 6px rgba(113, 9, 197, 0.8);
    background: rgba(13, 28, 42, 0.7);
    padding: 3px 8px;
    border-radius: 10px;
    border: 1px solid rgba(187, 60, 255, 0.5);
}


/* --- DECADE SELECTOR & SECTORS --- */

.decade-selector {
    position: absolute; /* Now relative to time-node */
    bottom: 25px; /* Position above the node center */
    left: 50%;
    width: 300px;
    height: 150px;
    border-radius: 150px 150px 0 0;
    transform-origin: bottom center;
    /* Start hidden */
    transform: translateX(-50%) scale(0);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                opacity 0.2s ease; /* Faster fade-in */
    z-index: 4; /* Below year selector but above node */
    overflow: hidden;
    pointer-events: none; /* Container itself is not interactive initially */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Add a subtle highlight effect to the decade selector */
.decade-selector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center bottom,
        rgba(99, 198, 255, 0.2),
        transparent 70%
    );
    z-index: 3;
    pointer-events: none;
    border-radius: 150px 150px 0 0;
}

/* Show decade selector when PARENT time-node is hovered */
.time-node:hover .decade-selector {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    pointer-events: auto; /* Allow events to pass through to sectors */
    transition-delay: 0s; /* Show immediately */
}

/* Hide decade selector when PARENT time-node is NOT hovered */
.time-node:not(:hover) .decade-selector {
    transform: translateX(-50%) scale(0);
    opacity: 0;
    pointer-events: none;
    /* Add delay before hiding to allow moving to year selector */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s,
                opacity 0.3s ease 0.2s; /* Delay opacity fade out */
}


/* Add hover detection area for better hover experience on the node itself */
.time-node::after {
    content: '';
    position: absolute;
    width: 40px; /* Wider area */
    height: 40px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: transparent; /* Invisible */
    border-radius: 50%;
    z-index: -1; /* Below node visual */
    pointer-events: auto; /* This doesn't work well here, rely on node/selector hover */
}

.decade-selector-century {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 6; /* Above sectors */
    white-space: nowrap;
    background: rgba(13, 28, 42, 0.7);
    padding: 3px 10px;
    border-radius: 15px;
    border: 1px solid rgba(99, 198, 255, 0.4);
}

.decade-sector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 58, 95, 0.7);
    border-right: 1px solid rgba(99, 198, 255, 0.6);
    border-left: 1px solid rgba(99, 198, 255, 0.6);
    box-sizing: border-box;
    transform-origin: bottom center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 4; /* Below century label */
    /* clip-path set by JS */
}

.decade-sector:first-child { border-left: none; }
.decade-sector:last-child { border-right: none; }


.decade-sector:hover {
    background-color: rgba(99, 198, 255, 0.7);
    z-index: 5; /* Bring forward on hover */
    transform: scaleY(1.03);
    box-shadow: 0 0 15px rgba(99, 198, 255, 0.4);
}

.decade-sector.active {
    background-color: rgba(99, 198, 255, 0.9) !important; /* Use important to override hover potentially */
    box-shadow: 
        0 0 12px rgba(99, 198, 255, 0.5) inset,
        0 0 20px rgba(99, 198, 255, 0.4);
    z-index: 5; /* Ensure active is visually distinct */
}

.decade-sector.active .decade-sector-label {
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 1);
    color: #ffffff;
}

.decade-sector-label {
    position: absolute;
    transform-origin: center center; /* Critical for rotation */
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    white-space: nowrap;
    text-align: center;
    user-select: none;
    background: rgba(13, 28, 42, 0.5);
    padding: 2px 5px;
    border-radius: 10px;
    transition: all 0.2s ease;
    /* transform set by JS */
}

.decade-sector:hover .decade-sector-label {
    transform: translate(-50%, -50%) scale(1.1) !important;
    background: rgba(13, 28, 42, 0.8);
}

/* --- Curved YEAR SELECTOR (Now child of time-node) --- */

.curved-year-selector {
    position: absolute; /* Positioned relative to the time-node */
    width: 300px;    /* Same dimensions as decade selector */
    height: 150px;
    border-radius: 150px 150px 0 0;
    bottom: 25px;    /* Same position as decade selector relative to node */
    left: 50%;
    transform-origin: bottom center; /* Ensure scaling originates correctly */
    /* Start hidden, using transform for smooth scaling */
    transform: translateX(-50%) scale(0);
    opacity: 0;
    pointer-events: none; /* Disable events when hidden */
    z-index: 5; /* Above decade sectors */
    /* Transition matches decade selector show/hide */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                opacity 0.2s ease;
}

/* Show year selector ONLY when parent time-node is hovered */
/* This works because hovering the year selector keeps the parent node hovered */
.time-node:hover .curved-year-selector {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    pointer-events: auto; /* Enable pointer events when visible */
    transition-delay: 0s; /* Show immediately */
}

/* Hide year selector when parent time-node is NOT hovered */
.time-node:not(:hover) .curved-year-selector {
    opacity: 0;
    transform: translateX(-50%) scale(0);
    pointer-events: none;
     /* Add same delay as decade selector before hiding */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s,
                opacity 0.3s ease 0.2s;
}


/* Year buttons within the curved selector */
.curved-year-selector .year-btn {
    position: absolute; /* Positioned relative to curved-year-selector */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #63c6ff; /* Default blue */
    border: 1px solid #ffffff; /* White border */
    color: #0d1c2a; /* Dark text */
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%); /* JS sets left/top */
    cursor: pointer;
    pointer-events: auto; /* Buttons are always interactive when visible */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    transition: all 0.2s ease;
    text-shadow: none;
    z-index: 6; /* Above the year selector container */
}

.curved-year-selector .year-btn:hover {
    background: #ffffff; /* White background on hover */
    color: #0f4d71; /* Dark blue text */
    border-color: #63c6ff;
    transform: translate(-50%, -50%) scale(1.2); /* Scale effect */
    box-shadow: 0 0 8px rgba(99, 198, 255, 0.8);
}

/* Style for the currently selected year */
.curved-year-selector .year-btn.active {
    background: #3a7acc; /* Darker active blue */
    color: #ffffff;
    border-color: #ffffff;
    transform: translate(-50%, -50%) scale(1.1); /* Slightly larger */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}


/* --- Toggle Button --- */
.toggle-time-slider {
    position: fixed;
    bottom: 100px; /* Adjusted for container height */
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a3a5f, #0d1c2a);
    border: 2px solid #3a7acc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    color: white;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.toggle-time-slider:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(99, 198, 255, 0.5);
}

.toggle-time-slider i {
    transition: transform 0.3s ease;
}

.toggle-time-slider.closed i {
    transform: rotate(180deg);
}


/* --- Cleanup old/unused styles --- */
.year-selector,
.year-node,
.year-selector-panel,
.direct-year-selector {
    display: none !important; /* Hide old year selector elements */
}

/* Period Selection Mode Styles */
.time-mode-buttons {
    display: flex;
    justify-content: center;
    position: absolute;
    right: 130px; /* Move further right to avoid overlap with toggle button */
    bottom: 130px; /* Position higher above the time circle */
    gap: 10px;
    z-index: 10; /* Ensure buttons appear above other elements */
}

.time-mode-button {
    background: rgba(13, 28, 42, 0.7);
    color: white;
    border: 1px solid rgba(99, 198, 255, 0.5);
    border-radius: 15px;
    padding: 5px 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.time-mode-button i {
    font-size: 11px;
}

.time-mode-button.active {
    background: rgba(99, 198, 255, 0.3);
    box-shadow: 0 0 8px rgba(99, 198, 255, 0.5);
}

.time-mode-button:hover {
    background: rgba(99, 198, 255, 0.2);
}

/* Period Selection Markers */
.time-range-marker {
    position: absolute;
    top: -5px;
    width: 12px;
    height: 35px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, rgba(99, 198, 255, 0.7), rgba(99, 198, 255, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    z-index: 10;
    display: none;
    box-shadow: 0 0 10px rgba(99, 198, 255, 0.5);
    transition: left 0.3s ease;
}

.time-range-marker.start-marker {
    border-left: 2px solid #63c6ff;
}

.time-range-marker.end-marker {
    border-right: 2px solid #63c6ff;
}

.time-range-marker.start-selected, .time-range-marker.end-selected {
    background: linear-gradient(to bottom, rgba(99, 198, 255, 0.9), rgba(99, 198, 255, 0.5));
    height: 40px;
    box-shadow: 0 0 15px rgba(99, 198, 255, 0.7);
}

.marker-label {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 28, 42, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    white-space: nowrap;
    border: 1px solid rgba(99, 198, 255, 0.4);
}

.time-range-highlight {
    position: absolute;
    top: 0;
    height: 25px;
    background: rgba(99, 198, 255, 0.2);
    border-top: 1px solid rgba(99, 198, 255, 0.6);
    border-bottom: 1px solid rgba(99, 198, 255, 0.6);
    z-index: 5;
    display: none;
    transition: left 0.3s ease, width 0.3s ease;
}

/* Confirm period button */
.confirm-period-button {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(99, 198, 255, 0.8);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    display: none;
    z-index: 20;
}

.confirm-period-button:hover {
    background: rgba(99, 198, 255, 1);
    box-shadow: 0 0 15px rgba(99, 198, 255, 0.5);
}

.confirm-period-button.show {
    display: block;
    animation: fadeIn 0.3s forwards;
}

/* Period display in time circle */
.time-display.period-mode .year {
    font-size: 0.7em;
    line-height: 1.4;
    margin-bottom: 5px;
}

/* Container styles when in period mode */
.time-slider-container.period-mode .time-range-marker {
    display: block;
}

.time-slider-container.period-mode .time-range-highlight {
    display: block;
    opacity: 0.7;
}

/* Period Labels in Time Display */
.period-label {
    font-size: 0.6em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3px;
}

.period-divider {
    display: inline-block;
    margin: 0 4px;
    opacity: 0.7;
}

/* Period Edit Buttons */
.period-edit-buttons {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
    display: none;
}

.period-edit-button {
    background: rgba(13, 28, 42, 0.7);
    color: white;
    border: 1px solid rgba(99, 198, 255, 0.5);
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.period-edit-button:hover {
    background: rgba(99, 198, 255, 0.3);
    box-shadow: 0 0 8px rgba(99, 198, 255, 0.5);
}

.period-edit-buttons.show {
    display: flex;
    animation: fadeIn 0.3s forwards;
}

/* Period error message */
.period-error-message {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 50, 50, 0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    z-index: 30;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.period-error-message.show {
    opacity: 1;
}

.reset-time-button {
    position: fixed;
    bottom: 155px;  /* Above the toggle button */
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a3a5f, #0d1c2a);
    border: 2px solid #3a7acc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    color: white;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.reset-time-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(99, 198, 255, 0.5);
}