﻿.modal-confirmation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.modal-confirmation button {
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    background-color: lightgray;
    color: white;
    transition: all 0.3s ease;
}

.modal-confirmation button:hover {
    background-color: darkgray;
    cursor: pointer;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 20px;
    max-width: 400px;
}
