.modal-sv {
    position: fixed;
    display: none ;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-sv-content {
    background: white;
    width: 450px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.modal-sv-header {
    background: #2196F3;
    color: white;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}
.close-sv {
    cursor: pointer;
    font-size: 20px;
}
.modal-sv-body {
    padding: 25px 15px;
}
.modal-sv .input-groupe label {
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    background: white;
    margin-top:-40px;
}
.input-groupe {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 45px;
    padding-left: 8px;
}
.modal-sv .input-groupe input {
    flex-grow: 1;
    border: none;
    outline: none;
    font-size: 14px;
}
.modal-sv .save-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    height:45px;
    font-size: 14px;
}
.modal-sv .save-btn:hover {
    background: #218838;
}



.modal-sv-confirm {
    position: fixed;
    display: none ;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-sv-content-confirm {
    background: white;
    width: 500px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-group {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
}

.btn-group button {
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
}

.btn-group button:first-child {
    background: #ccc;
    color: black;
}

.btn-group button:last-child {
    background: #2196F3; /* Bleu comme l'en-tête */
    color: white;
}