/* Publications Page Styles */

/* Page Header */
/* Page Header styles removed - inheriting from modern.css */

/* Tabs Container */
.tabs-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

.tab-btn {
    flex: 1;
    padding: 18px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-btn:hover {
    background: #e9ecef;
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    background: white;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 30px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-title {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

/* Publications List */
.publications-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.publication-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eee;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.publication-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-left-color: var(--secondary-color);
}

.publication-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 86, 179, 0.1);
    /* Assuming primary is blueish */
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
}

.publication-content {
    flex: 1;
}

.publication-content p {
    margin: 0;
    line-height: 1.6;
    color: #4a5568;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }

    .tabs-nav {
        flex-direction: column;
        background: #eee;
        gap: 2px;
    }

    .tab-btn {
        text-align: center;
        padding: 20px;
        background: white;
        font-size: 1.1rem;
        border: none;
        margin: 0;
    }

    .tab-btn.active {
        background: var(--primary-color);
        color: white;
        transform: none;
    }

    .tab-btn.active::after {
        display: none;
    }

    .tab-btn:not(.active):hover {
        background: #fdfdfd;
    }

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