/* General Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Top Bar */

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    color: #fff;
    padding: 10px 20px;
    font-family: Arial, sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
}

#date-time {
    font-size: 14px;
}

#theme-toggle {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: inherit;
}


/* Back to Top Button */

#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 12px 15px;
    font-size: 18px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}

#back-to-top:hover {
    background: #444;
}


/* Dark Theme */

body.dark {
    background: #111;
    color: #eee;
}

body.dark .top-bar {
    background: #111;
}

body.dark #back-to-top {
    background: #555;
}