.first-section {
    display: flex;
    gap: 12px;
}

.main-section {
    flex: 1 1 0;
    min-width: 0;
}

.sidebar {
    flex: 0 0 255px;
}

#weather-content {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 14px;
}

#weather-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    image-rendering: pixelated;
}

#weather-content-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#local-time {
    display: block;
}

#weather-temp {
    color: var(--lt_yellow);
}

#weather-desc {
    color: var(--lt_yellow);
}

#date-header {
    display: block;
}

#date-header h2 {
    margin: 6px;
    text-align: center;
    color: var(--lt_pink);
}

#date-table {
    width: 100%;
    text-align: center;
}

#today {
    color: var(--lt_pink);
}

.second-section {
    padding: 20px 0;
}

.second-section h2 {
    text-align: center;
    color: var(--lt_white);
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .first-section {
        flex-direction: column;
        gap: 12px;
    }

    .main-section {
        width: 100%;
    }

    .sidebar,
    #weather-window,
    #date-window {
        display: none;
    }

    .window {
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .window {
        margin-bottom: 8px;
    }
}
