.tabs-container {
    width: 100%;
    margin-top: 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 72px; /* Hauteur du header */
    background: white;
    z-index: 999;
}

.tabs {
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
    margin: 0;
    list-style: none;
}

.tab {
    padding: 0.75rem 1.5rem;
    color: #5f6368;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: background-color 0.2s;
}

.tab:hover {
    background-color: rgba(32, 33, 36, 0.04);
}

.tab.active {
    color: #1a73e8;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #1a73e8;
    border-radius: 3px 3px 0 0;
}

.swiper {
    width: 100%;
    height: calc(100vh - 272px); /* Ajusté pour tenir compte de la hauteur du header + tabs */
    padding-top: 1rem;
}

.swiper-slide {
    height: 100%;
    overflow-y: auto;
}

.tab-content {
    height: 100%;
    padding: 1rem;
}

.tab-content.active {
    display: block;
} 