main {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.atelier {
    background-color: white;
    border-radius: 5px;
    border: 2px solid #444;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 10px;
    min-width: 60%;
    max-width: 60%;

    padding: 10px
}

#interventions_phone {
    display: none
}

#interventions_ordi {
    display: block;
    width: 30%;
}

#centrer_phone {
    width: 60%;
}

img {
    cursor: pointer;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .atelier {
        gap: 10px
    }

    #centrer_phone {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center
    }

    #interventions_phone {
        display: block
    }

    .description-atelier{
        max-width: -webkit-fill-available;
    }

    #interventions_ordi {
        display: none
    }

    #centrer_phone {
        width: 100%;
    }

    .atelier p {
        width: auto !important
    }
}

.atelier img, .atelier video {
    border-radius: 10px;
    width: 100%;
}

.description-atelier img {
    width: 200px;
}

.atelier h2 {
    font-size: 1.5em;
    margin-top: 20px
}

.atelier p {
    font-size: small;
    line-height: 1.6;
    margin-bottom: 10px;
}

.download-link {
    background: linear-gradient(to bottom, #66ccff, #3399ff);
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease
}

.download-link:hover {
    background: linear-gradient(to bottom, #3399ff, #0066cc)
}


/*autre*/

.description-container {
    margin: 15px 0;
    position: relative;
}

.media-buttons {
    margin-top: 5px;
}

.media-button {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9em;
}

.media-button:hover {
    background: #e0e0e0;
}

.form-actions {
    margin-top: 15px;
}