#editVacationModal {
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    cursor: move;
    width: 300px;
}

#editVacationModal button {
    margin: 5px 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#editVacationModal label {
    display: block;
    margin: 10px 0 5px;
}

#editVacationModal input[type="date"] {
    width: calc(100% - 20px);
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.button-container {
    display: flex;
    flex-direction: row; /* Вертикальное расположение кнопок */
    align-items: flex-end; /* Выравнивание кнопок по правому краю */
    margin-top: 20px;
}
