.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 1000%;
    height: 1000%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    width: 250px;
    height: 400px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal h3 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.modal-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-confirm, .btn-cancel {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background-color: #4CAF50;
    color: white;
}

.btn-confirm:hover {
    background-color: #45a049;
}

.btn-cancel {
    background-color: #f44336;
    color: white;
}

.btn-cancel:hover {
    background-color: #da190b;
}

#modalMessage {
    flex-grow: 1;
    margin: 20px 0;
}

#modalMessage p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
} 