/* Theme toggle styles for both light and dark modes */
#theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, border-color 0.3s ease;
    pointer-events: auto;
}

#theme-toggle:hover {
    background: #eeeeee;
}

#theme-toggle .sun-icon {
    display: block;
}

#theme-toggle .moon-icon {
    display: none;
}