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

.modal-style {
    width: 45rem;
}

.modal-header {
    background: #CC6600;
    color: white;
    font-weight: bold;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header p {
    margin: 0;
}

.modal-header .close-btn {
    background: white;
    color: #CC6600;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.modal-content {
    padding: 15px 15px 0;
    color: #333;
    min-height: 4rem;
    background-color: white;
}

p.first {
    margin: 0;
}

.modal-footer button:hover {
    background-color: rgb(0, 178, 36);
    color: #fff;
}

.modal-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.modal-content a:hover {
    text-decoration: underline;
}

.modal-footer {
    background: #f5f5f5;
    padding: 10px;
    gap: 1rem;
    text-align: right;
    display: flex;
    justify-content: center;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

.modal-footer button {
    color: #fff;
    border: 1px solid #ccc;
    padding: 8px 12px;
    border-radius: 9px;
    cursor: pointer;
}

#confirmButton {
    background-color: rgb(139, 143, 139);
}

#cancelButton {
    background-color: rgb(0, 178, 36);
}