/* ==========================================================================
   Full Sunshine Mode Theme - Maximum Brightness Calendar
   Version: 1.2
   Updated: 2024-06-08
   Changes:
   - Extreme brightness palette with maximum contrast and solar accents
   - Eye-searingly bright design for ultimate visibility
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&family=Bangers&display=swap');

:root {
    /* Maximum Brightness Palette */
    --fs-bg: #FFFFFF;
    --fs-text: #000000;
    --fs-primary: #FFFACD;
    --fs-secondary: #FFF8DC;
    --fs-date-number: #000000;

    /* Solar Flare Yellows */
    --fs-solar1: #FFFF00;
    --fs-solar2: #FFD700;
    --fs-solar3: #FFA500;
    --fs-solar4: rgba(255, 255, 0, 0.9);
    --fs-solar5: rgba(255, 255, 0, 0.7);

    /* Ultra Bright Oranges */
    --fs-bright1: #FF4500;
    --fs-bright2: #FF6347;
    --fs-bright3: #FF7F50;
    --fs-bright4: rgba(255, 69, 0, 0.9);
    --fs-bright5: rgba(255, 69, 0, 0.7);

    /* High-Visibility Accents */
    --fs-accent1: #FF0000;
    --fs-accent2: #00FF00;
    --fs-accent3: #0000FF;
    --fs-accent4: rgba(255, 0, 0, 0.9);
    --fs-accent5: rgba(255, 0, 0, 0.7);

    /* Theme Variables */
    --fs-shadow: rgba(255, 255, 0, 0.3);
    --fs-radius: 0px;
    --fs-transition: 0.3s ease;
    --fs-hover: #FFD700;
    --fs-glow: 0 0 20px rgba(255, 255, 0, 0.5);
    --fs-pattern: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23FFFF00"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".4" fill="%23FFFF00"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" opacity=".5" fill="%23FFFF00"/></svg>');
}

/* ==================== ANIMATIONS ==================== */
@keyframes fs-fade {

    0%,
    100% {
        opacity: 0.95;
    }

    50% {
        opacity: 1;
    }
}

@keyframes fs-slide {
    from {
        transform: translateY(5px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fs-pulse {

    0%,
    100% {
        box-shadow: 0 0 5px var(--fs-shadow);
    }

    50% {
        box-shadow: var(--fs-glow);
    }
}

@keyframes fs-flash {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fs-vibrate {

    0%,
    100% {
        transform: translateX(-1px);
    }

    50% {
        transform: translateX(1px);
    }
}

@keyframes progress-bar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* ==================== BASE STYLES ==================== */
.full-sunshine-mode {
    font-family: 'Rubik', sans-serif;
    color: var(--fs-text);
    line-height: 1.6;
    font-size: 1rem;
    background-color: var(--fs-bg);
    min-height: 100vh;
    background-image:
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="15" y="15" width="3" height="3" fill="%23FFFF00" opacity="0.4"/><rect x="85" y="25" width="2" height="2" fill="%23FF4500" opacity="0.5"/><rect x="25" y="75" width="3" height="3" fill="%23FFFF00" opacity="0.6"/><rect x="75" y="85" width="2" height="2" fill="%23FF0000" opacity="0.4"/><rect x="50" y="50" width="2" height="2" fill="%23FFFF00" opacity="0.5"/></svg>');
}

.full-sunshine-mode .container {
    background-color: var(--fs-primary);
    padding: 2rem;
    border: 3px solid var(--fs-solar4);
    box-shadow: var(--fs-glow);
    position: relative;
    overflow: hidden;
    max-width: 1600px;
    margin: 0 auto;
    border-radius: var(--fs-radius);
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 0, 0.1) 10px, rgba(255, 255, 0, 0.1) 20px);
}

.full-sunshine-mode .container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
            var(--fs-solar1) 0%,
            var(--fs-bright1) 33%,
            var(--fs-accent1) 66%,
            var(--fs-solar1) 100%);
    animation: fs-flash 2s ease-in-out infinite;
}

.full-sunshine-mode .container::after {
    content: "☀️";
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.2;
    animation: fs-vibrate 0.1s linear infinite;
}

/* ==================== HEADER & TITLE ==================== */
.full-sunshine-mode #calendar-title {
    font-family: 'Bangers', cursive;
    color: var(--fs-text);
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.05em;
    position: relative;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(255, 255, 0, 0.3);
    -webkit-text-stroke: 1px var(--fs-solar1);
}

.full-sunshine-mode #calendar-title::after {
    content: "⚡";
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    opacity: 0.8;
}

/* ==================== DATE & WEATHER DISPLAY ==================== */
.full-sunshine-mode #date-weather-container {
    text-align: center;
    margin: 1.8rem 0;
    padding: 1.2rem;
    background-color: var(--fs-primary);
    border: 3px solid var(--fs-solar4);
    border-radius: var(--fs-radius);
    position: relative;
    box-shadow: 0 3px 15px rgba(255, 255, 0, 0.3);
    background-image:
        repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255, 69, 0, 0.1) 5px, rgba(255, 69, 0, 0.1) 10px);
}

.full-sunshine-mode #date-weather-container::before {
    content: "MAXIMUM BRIGHTNESS";
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--fs-primary);
    padding: 0 8px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--fs-bright1);
    font-weight: 800;
    font-family: 'Rubik', sans-serif;
    text-transform: uppercase;
}

.full-sunshine-mode #date-weather-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--fs-solar1), var(--fs-bright1), var(--fs-solar1), transparent);
}

.full-sunshine-mode #current-date {
    font-family: 'Bangers', cursive;
    color: var(--fs-text);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    -webkit-text-stroke: 0.5px var(--fs-solar1);
}

.full-sunshine-mode #today-weather {
    font-family: 'Rubik', sans-serif;
    color: var(--fs-text);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(255, 255, 0, 0.3);
}

/* ==================== ANALOG CLOCK ==================== */
.full-sunshine-mode #analog-watch {
    display: flex;
    justify-content: center;
    margin: 1.8rem 0;
}

.full-sunshine-mode .clock-face {
    width: 180px;
    height: 180px;
    border: 5px solid var(--fs-solar2);
    border-radius: 50%;
    position: relative;
    background-color: var(--fs-primary);
    box-shadow:
        0 0 20px rgba(255, 255, 0, 0.5),
        inset 0 0 30px rgba(255, 255, 0, 0.3);
}

.full-sunshine-mode .hand {
    position: absolute;
    top: 50%;
    transform-origin: 100%;
    transform: rotate(90deg);
    transition: all 0.05s;
    transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
}

.full-sunshine-mode .hour-hand {
    width: 40%;
    left: 10%;
    height: 5px;
    background: var(--fs-solar1);
    margin-top: -2.5px;
    border-radius: 2.5px;
    box-shadow: 0 0 5px var(--fs-solar1);
}

.full-sunshine-mode .minute-hand {
    width: 48%;
    left: 2%;
    height: 4px;
    background: var(--fs-bright1);
    margin-top: -2px;
    border-radius: 2px;
    box-shadow: 0 0 5px var(--fs-bright1);
}

.full-sunshine-mode .second-hand {
    width: 48%;
    left: 2%;
    height: 2px;
    background: var(--fs-accent1);
    margin-top: -1px;
    box-shadow: 0 0 5px var(--fs-accent1);
}

/* ==================== CALENDAR TABLE ==================== */
.full-sunshine-mode table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    margin: 1.8rem auto;
    background-color: transparent;
    table-layout: fixed;
}

/* DAY OF WEEK HEADERS */
.full-sunshine-mode th {
    background: linear-gradient(135deg, var(--fs-solar1) 0%, var(--fs-bright1) 100%);
    color: var(--fs-text) !important;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    padding: 0.8rem 0.4rem;
    border-radius: var(--fs-radius);
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid var(--fs-bright1);
}

.full-sunshine-mode th span.full-day-name {
    display: inline;
}

.full-sunshine-mode th abbr {
    display: none;
    text-decoration: none;
    border-bottom: none;
}

/* DATE NUMBER STYLES */
.full-sunshine-mode td {
    background-color: var(--fs-primary);
    color: var(--fs-text);
    padding: 1rem;
    border: 3px solid var(--fs-solar4);
    height: 90px;
    vertical-align: top;
    transition: all var(--fs-transition);
    position: relative;
    border-radius: var(--fs-radius);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 0, 0.2);
}

.full-sunshine-mode td .date-number {
    color: var(--fs-text) !important;
    font-weight: 900;
    font-size: 1.3rem;
    position: absolute;
    top: 8px;
    left: 8px;
    font-family: 'Rubik', sans-serif;
    text-shadow: 0 1px 2px rgba(255, 255, 0, 0.3);
}

.full-sunshine-mode td:hover {
    background-color: var(--fs-secondary);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
    border-color: var(--fs-solar1);
    transform: translateY(-3px) scale(1.02);
}

/* Current date highlight */
.full-sunshine-mode td.current-day {
    background-color: rgba(255, 255, 0, 0.2);
    border: 4px solid var(--fs-solar1);
    animation: fs-pulse 1s infinite;
    box-shadow: 0 0 25px rgba(255, 255, 0, 0.6);
}

.full-sunshine-mode td.current-day .date-number {
    color: var(--fs-text) !important;
    font-weight: 900;
    font-size: 1.5rem;
}

.full-sunshine-mode td.current-day::before {
    content: "🔥";
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1;
    font-size: 1.3rem;
}

/* ==================== EVENT MARKERS ==================== */
.full-sunshine-mode .event-marker {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--fs-bright1);
    margin: 0 2px;
    transition: all var(--fs-transition);
    box-shadow: 0 0 5px var(--fs-bright1);
}

.full-sunshine-mode .event-marker:hover {
    transform: scale(1.6);
    background-color: var(--fs-solar1);
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
}

/* ==================== MODAL STYLES ==================== */
.full-sunshine-mode .modal-content {
    position: relative;
    background-color: var(--fs-primary);
    border: 3px solid var(--fs-solar4);
    padding: 25px;
    color: var(--fs-text);
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.5);
    border-radius: var(--fs-radius);
    animation: fs-slide 0.3s ease-out;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 69, 0, 0.1) 5px, rgba(255, 69, 0, 0.1) 10px),
        repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255, 0, 0, 0.1) 5px, rgba(255, 0, 0, 0.1) 10px);
}

.full-sunshine-mode .modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
            var(--fs-solar1) 0%,
            var(--fs-bright1) 50%,
            var(--fs-accent1) 100%);
}

.full-sunshine-mode .modal-content h2 {
    color: var(--fs-text);
    font-family: 'Bangers', cursive;
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 0.05em;
    -webkit-text-stroke: 1px var(--fs-solar1);
}

/* Modal date display */
.full-sunshine-mode .modal-date {
    font-family: 'Bangers', cursive;
    color: var(--fs-text);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--fs-solar4);
    -webkit-text-stroke: 0.5px var(--fs-solar1);
}

/* Event list */
.full-sunshine-mode .event-list {
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}

.full-sunshine-mode .event-item {
    background-color: var(--fs-secondary);
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 5px solid var(--fs-solar1);
    border-radius: var(--fs-radius);
    transition: all var(--fs-transition);
    border: 2px solid var(--fs-solar4);
}

.full-sunshine-mode .event-item:hover {
    background-color: rgba(255, 255, 0, 0.3);
    transform: translateX(5px) scale(1.02);
    border-left-color: var(--fs-bright1);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.4);
}

.full-sunshine-mode .event-time {
    font-family: 'Rubik', sans-serif;
    color: var(--fs-bright1);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    display: block;
    text-shadow: 0 1px 2px rgba(255, 69, 0, 0.3);
}

.full-sunshine-mode .event-title {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--fs-text);
    text-shadow: 0 1px 2px rgba(255, 255, 0, 0.3);
}

.full-sunshine-mode .event-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--fs-text);
    opacity: 0.9;
    font-weight: 500;
}

.full-sunshine-mode .modal-content button {
    background: linear-gradient(135deg, var(--fs-solar1) 0%, var(--fs-bright1) 100%);
    color: var(--fs-text);
    border: none;
    padding: 12px 24px;
    font-size: 1.1em;
    font-weight: 800;
    cursor: pointer;
    transition: all var(--fs-transition);
    letter-spacing: 0.1em;
    font-family: 'Rubik', sans-serif;
    border-radius: var(--fs-radius);
    text-transform: uppercase;
    border: 2px solid var(--fs-bright1);
}

.full-sunshine-mode .modal-content button:hover {
    background: linear-gradient(135deg, var(--fs-solar2) 0%, var(--fs-bright2) 100%);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.6);
    transform: translateY(-3px) scale(1.05);
}

/* Close Button */
.full-sunshine-mode .modal .close-button {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--fs-primary);
    color: var(--fs-bright1);
    border: 2px solid var(--fs-bright1);
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all var(--fs-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.2rem;
}

.full-sunshine-mode .modal .close-button:hover {
    background-color: var(--fs-bright1);
    color: var(--fs-primary);
    border-color: var(--fs-bright1);
    transform: scale(1.1);
}

/* ==================== BUTTONS & CONTROLS ==================== */
.full-sunshine-mode .button,
.full-sunshine-mode .transparent-button {
    border: 3px solid var(--fs-solar1);
    color: var(--fs-bright1);
    background-color: transparent;
    padding: 0.8rem 1.5rem;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--fs-transition);
    position: relative;
    overflow: hidden;
    margin: 0.4rem;
    border-radius: var(--fs-radius);
    letter-spacing: 0.05em;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.full-sunshine-mode .button:hover,
.full-sunshine-mode .transparent-button:hover {
    background-color: var(--fs-solar1);
    color: var(--fs-primary);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
    transform: translateY(-3px) scale(1.05);
}

.full-sunshine-mode .controls {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 1.2rem 0;
}

/* ==================== THEME SWITCHER ==================== */
.full-sunshine-mode #theme-switcher-container {
    position: relative;
    margin: 0 0.8rem;
    min-width: 200px;
    z-index: 1000;
}

.full-sunshine-mode #theme-switcher {
    background-color: var(--fs-primary);
    color: var(--fs-bright1) !important;
    border: 3px solid var(--fs-bright1);
    padding: 0.8rem 2.2rem 0.8rem 1rem;
    font-family: 'Rubik', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF4500'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1rem;
    cursor: pointer;
    transition: all var(--fs-transition);
    border-radius: var(--fs-radius);
    text-transform: uppercase;
}

.full-sunshine-mode #theme-switcher option {
    background-color: var(--fs-primary) !important;
    color: var(--fs-bright1) !important;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 12px !important;
}

.full-sunshine-mode #theme-switcher:focus {
    outline: none;
    border-color: var(--fs-solar1);
    box-shadow: 0 0 0 3px rgba(255, 255, 0, 0.5);
}

/* ==================== BACK TO TOP BUTTON ==================== */
.full-sunshine-mode #backToTopBtn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    border: none;
    padding: 1rem 1.7rem;
    font-size: 0.95rem;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    color: var(--fs-text);
    background: linear-gradient(135deg, var(--fs-solar1) 0%, var(--fs-bright1) 100%);
    cursor: pointer;
    transition: all var(--fs-transition);
    opacity: 0.9;
    display: none;
    border-radius: var(--fs-radius);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
    text-transform: uppercase;
    border: 2px solid var(--fs-bright1);
}

.full-sunshine-mode #backToTopBtn:hover {
    background: linear-gradient(135deg, var(--fs-solar2) 0%, var(--fs-bright2) 100%);
    opacity: 1;
    transform: translateY(-3px) scale(1.05);
}

/* ==================== FOOTER ==================== */
.full-sunshine-mode footer {
    text-align: center;
    margin-top: 1.8rem;
    padding-top: 1.2rem;
    border-top: 3px solid var(--fs-solar4);
    color: var(--fs-text);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==================== MEDIA QUERIES ==================== */
@media (max-width: 992px) {
    .full-sunshine-mode .container {
        padding: 1.5rem;
    }

    .full-sunshine-mode #calendar-title {
        font-size: 2.5rem;
    }

    .full-sunshine-mode #current-date {
        font-size: 1.8rem;
    }

    .full-sunshine-mode #today-weather {
        font-size: 1.1rem;
    }

    .full-sunshine-mode .modal-date {
        font-size: 1.5rem;
    }

    .full-sunshine-mode .event-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .full-sunshine-mode {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .full-sunshine-mode .clock-face {
        width: 150px;
        height: 150px;
        border-width: 4px;
    }

    .full-sunshine-mode th {
        font-size: 0.85rem;
        padding: 0.7rem 0.3rem;
    }

    .full-sunshine-mode th span.full-day-name {
        display: none;
    }

    .full-sunshine-mode th abbr {
        display: inline;
    }

    .full-sunshine-mode td {
        padding: 0.7rem;
        height: 80px;
        font-size: 0.85rem;
    }

    .full-sunshine-mode td .date-number {
        font-size: 1.2rem;
        top: 6px;
        left: 6px;
    }

    .full-sunshine-mode td.current-day::before {
        font-size: 1.1rem;
        top: 4px;
        right: 4px;
    }

    .full-sunshine-mode #backToTopBtn {
        right: 15px;
        bottom: 15px;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .full-sunshine-mode #theme-switcher {
        padding: 0.7rem 1.8rem 0.7rem 0.8rem;
        font-size: 0.9rem;
        min-width: 170px;
    }

    .full-sunshine-mode .modal-content {
        padding: 20px;
    }

    .full-sunshine-mode .event-item {
        padding: 0.8rem;
    }
}

@media (max-width: 576px) {
    .full-sunshine-mode .container {
        padding: 1rem;
    }

    .full-sunshine-mode #calendar-title {
        font-size: 2.2rem;
    }

    .full-sunshine-mode #current-date {
        font-size: 1.6rem;
    }

    .full-sunshine-mode #today-weather {
        font-size: 1rem;
    }

    .full-sunshine-mode .clock-face {
        width: 130px;
        height: 130px;
        border-width: 3px;
    }

    .full-sunshine-mode th {
        font-size: 0.8rem;
        padding: 0.6rem 0.2rem;
    }

    .full-sunshine-mode td {
        padding: 0.6rem;
        height: 70px;
        font-size: 0.8rem;
    }

    .full-sunshine-mode td .date-number {
        font-size: 1.1rem;
        top: 5px;
        left: 5px;
    }

    .full-sunshine-mode #theme-switcher {
        min-width: 150px;
        font-size: 0.85rem;
    }

    .full-sunshine-mode .modal-content {
        padding: 15px;
    }

    .full-sunshine-mode .modal-date {
        font-size: 1.3rem;
    }

    .full-sunshine-mode .event-time {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .full-sunshine-mode th {
        font-size: 0.75rem;
        padding: 0.5rem 0.1rem;
    }

    .full-sunshine-mode td {
        height: 60px;
    }

    .full-sunshine-mode td .date-number {
        font-size: 1rem;
    }

    .full-sunshine-mode #theme-switcher {
        min-width: 130px;
        font-size: 0.8rem;
    }
}