#confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-content h3 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    text-align: center;
}

.modal-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.table-confirm {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table-confirm th, .table-confirm td {
    border: 1px solid #ddd;
    padding: 15px;
    font-size: 1.6rem;
    text-align: left;
}

.table-confirm th {
    background-color: #f9f9f9;
    width: 30%;
}

.form-buttons {
    text-align: center;
}

.form-buttons button {
    margin: 0 10px;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: bold;
}

#submit-btn {
    background-color: #d9534f;
    color: white;
}

#cancel-btn {
    background-color: #f7f7f7;
    color: #333;
    border: 1px solid #ccc;
}