.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.75rem;
}

.gap-2 {
    gap: 0.5rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.font-semibold {
    font-weight: 600;
}

.text-sm\/6 {
    font-size: 0.875rem;
    line-height: 1.5rem;
}

.text-slate-500 {
    color: rgb(100 116 139);
}

.text-slate-600 {
    color: rgb(71 85 105);
}

.text-white {
    color: rgb(255 255 255);
}

.text-white\/90 {
    color: rgb(255 255 255 / 0.9);
}

.text-white\/80 {
    color: rgb(255 255 255 / 0.8);
}

.text-yellow-300 {
    color: rgb(253 224 71);
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}

/* Forecast Table Layout */
.forecast-table {
    display: grid;
    grid-template-columns: 45px 30px 60px 1fr; /* Fixed widths for Day, Icon, and Temp */
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #ccc;
    font-family: 'Courier Prime', monospace; /* Consistent with newsprint feel */
}

.forecast-table:last-child { border-bottom: none; }

.forecast-day {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--retro-navy);
}

.forecast-temp {
    font-weight: bold;
    font-size: 0.85rem;
    color: var(--retro-navy);
    white-space: nowrap;
}

.forecast-desc {
    font-size: 0.75rem;
    color: #666;
    text-overflow: ellipsis;
    white-space: nowrap;
}