:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --icon-color: #f39c12;
    /* Sun orange for light mode */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 60px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-toggle {
    font-size: 36px;
    cursor: pointer;
    margin-top: 30px;
    transition: transform 0.3s ease;
}

.icon-toggle:hover {
    transform: scale(1.1);
}

#modeIcon {
    color: var(--icon-color);
    transition: color 0.3s ease, transform 0.3s ease;
}