html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.emetteurMailPage .addButton {
    width: 250px;
    padding-left: 12px;
}

    .emetteurMailPage .addButton * {
        text-align: center;
        text-decoration: none;
    }

.emetteurMailPage .actionButton {
    display: flex;
    align-items: center;
    justify-content:space-between;
}

    .emetteurMailPage .actionButton * {
        border: none;
        font-weight: bold;
        color: #0d6efd;
        background: none;
        text-decoration: none;
    }

        .emetteurMailPage .actionButton *:hover {
            color: #0a58ca;
        }

.ViewEmetteurMailPage {
    display: flex;
    justify-content: center;
}

    .ViewEmetteurMailPage .card-container {
        width: 600px;
        padding: 23px;
        border-radius: 14px;
        background-color: antiquewhite;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

        .ViewEmetteurMailPage .card-container .item label {
            font-size: 1.2rem;
            font-weight: 500;
        }

        .ViewEmetteurMailPage .card-container .buttonGroup {
            width: 100%;
            display: flex;
            gap: 20px;
            align-items: center;
        }

            .ViewEmetteurMailPage .card-container .buttonGroup * {
                width: 50%;
                border: none;
                background-color: burlywood;
                border-radius: 4px;
                font-size: 1.2rem;
                font-weight: 500;
                padding: 5px;
            }

        .ViewEmetteurMailPage .card-container .item-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
            gap: 10px
        }

        .ViewEmetteurMailPage .card-container .item {
            display: flex;
            flex-direction: column
        }

    .resize-drag {
        display: flex;
        align-items: flex-start;
        margin: 0 0.5rem;
        font-family: sans-serif;
        touch-action: none;
        box-sizing: border-box;
    }

.schedule {
    margin-top: 50px;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.schedule-column {
    position: relative;
    width: 300px;
}

    .schedule-column:nth-child(even) {
        background-color: rgba(0, 0, 0, 0.05);
    }

.schedule-time,
.schedule-event {
    position: absolute;
}

.schedule-time {
    border-top: 1px dotted grey;
    width: 1295px;
}

.schedule-timeLabel {
    background: white;
    width: 60px;
    transform: translateY(-50%);
    text-align: right;
    padding-right: 10px;
}

.schedule-event {
    background: black;
    color: white;
    left: 5px;
    right: 5px;
    border-radius: 5px;
    padding: 10px;
    overflow: hidden;
}

    .schedule-event form {
        display: none;
    }

    .schedule-event:hover > form {
        display: block;
    }

.schedule--track1
.schedule-event {
    background-color: #075A3A;
}

.form-group button[type="button"]{
    background-color:transparent;
    border: 1px solid black;
    margin: 10px;
    padding: 10px;
    width:50px;
    height:50px;
    border-radius:13px;
    font-weight:bold;
}

.selected {
    background-color: green !important;
    color:white;
}