.results-table{
    color: white;
}

.programs-table{
    color: white;
}

.top-spacing{
    margin-top: 35px;
}

.orange-text{
    color: #f4623a
}

.gallery-folder-card {
    width: 100%;
    min-height: 90px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.gallery-folder-card:hover {
    transform: translateY(-2px);
    border-color: #f4623a;
    background: rgba(244, 98, 58, 0.12);
}

.gallery-folder-icon {
    width: 2rem;
    text-align: center;
    color: #f4623a;
    font-size: 1.2rem;
}

.gallery-folder-name {
    font-weight: 600;
    text-align: left;
}

.gallery-viewer {
    margin-top: 1.5rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
}

.gallery-frame {
    width: 100%;
    min-height: 560px;
    border: none;
    border-radius: 0.35rem;
    background: #fff;
}

@media (max-width: 767px) {
    .gallery-frame {
        min-height: 420px;
    }
}