/* ========================================
   Boards Page Styles
   ======================================== */

/* Tab Navigation Styles */
.nav-pills .nav-link.active {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border: none;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.nav-pills .nav-link {
    background: white;
    border: 2px solid #bbf7d0;
    color: #16a34a;
    font-weight: 500;
    margin-right: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background: #f0fdf4;
    border-color: #16a34a;
    color: #15803d;
    transform: translateY(-1px);
}

.boards-tabs {
    justify-content: center;
    margin-bottom: 30px;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .nav-pills {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .nav-pills .nav-link {
        font-size: 0.85rem;
        padding: 8px 12px;
        margin-right: 0;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .nav-pills .nav-link {
        min-width: 100%;
        text-align: center;
    }
}
