body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #f1f1f1;
    overflow-x: hidden;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

header h1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

header button {
    background-color: #333;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 35px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}
.header-buttons {
    display: flex;
    gap: 10px;
    margin-right: 30px;
}

.btn-add-film,
.btn-film-vu,
.btn-films,
.btn-watchlist,
.btn-calendrier,
.btn-prochain-films  {
    color: white;
    border: none;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
}

.btn-add-film {
    background-color: #4CAF50;

}
.btn-film-vu {
    background-color: #3259f6;
}

.btn-films {
    background-color: #FF6347;
}

.btn-watchlist {
    background-color: #ffb300;
}

.btn-calendrier {
    background-color: #ab47bc;
}

.btn-prochain-films {
    background-color: #5d6273;
}

.btn-add-film i,
.btn-film-vu i,
.btn-films i,
.btn-watchlist i,
.btn-calendrier i,
.btn-prochain-films i {
    margin-right: 5px;
}

.btn-add-film:hover,
.btn-film-vu:hover,
.btn-films:hover, 
.btn-watchlist:hover,
.btn-calendrier:hover,
.btn-prochain-films:hover {
    opacity: 0.8;
}

/* Caché de base */
.mobile-menu-icon,
.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu button {
        font-size: 14px;
        padding: 6px 10px;
        margin: 4px 0;
        line-height: 1.2;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-menu i {
        font-size: 14px;
    }


    .mobile-menu button {
        width: 100%;
        text-align: left;
    }

    .mobile-menu.show {
        display: flex !important;
    }
}
