.program-tabs {
    background: white;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.program-tabs .nav-tabs {
    border-bottom: none;
    padding: 0;
    margin: 0;
}

.program-tabs .nav-link {
    background: #e9ecef;
    color: #333;
    border: none;
    border-radius: 0;
    padding: 15px 30px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
}

.program-tabs .nav-link:hover {
    background: #dee2e6;
}

.program-tabs .nav-link.active {
    background: #003d7a;
    color: white;
}

.tab-content-area {
    background: white;
    padding: 40px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-height: 400px;
}

.report-link {
    display: block;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.2s;
}

.report-link:hover {
    color: #0066cc;
    padding-left: 10px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.video-item {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    opacity: 0.9;
}

.video-title {
    padding: 15px;
    font-weight: 500;
}

.no-content {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

@media (max-width: 768px) {
    .program-tabs .nav-link {
        font-size: 13px;
        padding: 12px 15px;
    }

    .tab-content-area {
        padding: 20px;
    }

    .photo-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }
}
