/* Resource Tabs Styling */
.resource-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 2px solid rgba(77, 208, 225, 0.3);
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    background: #0a3d3e;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.resource-tab {
    background: rgba(77, 208, 225, 0.1);
    border: 2px solid rgba(77, 208, 225, 0.3);
    color: #4dd0e1;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.resource-tab:hover {
    background: rgba(77, 208, 225, 0.2);
    border-color: #4dd0e1;
    transform: translateY(-2px);
}

.resource-tab.active {
    background: #4dd0e1;
    color: #0a3d3e;
    border-color: #4dd0e1;
    font-weight: 600;
}

.tab-content {
    padding: 20px 0;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .resource-tabs {
        gap: 8px;
    }
    
    .resource-tab {
        padding: 10px 15px;
        font-size: 0.85rem;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .resource-tabs {
        flex-direction: column;
    }
    
    .resource-tab {
        width: 100%;
        min-width: unset;
    }
}

/* Light theme adjustments */
.light-theme .resource-tabs {
    background: #f5f5f5;
}

.light-theme .resource-tab {
    background: rgba(10, 61, 62, 0.05);
    border-color: rgba(10, 61, 62, 0.2);
    color: #0a3d3e;
}

.light-theme .resource-tab:hover {
    background: rgba(10, 61, 62, 0.1);
    border-color: #0a3d3e;
}

.light-theme .resource-tab.active {
    background: #0a3d3e;
    color: white;
    border-color: #0a3d3e;
}

