/**
 * Clean Codes Arbitration - Modal Styles
 */

#cca-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

#cca-modal .cca-modal-content {
    background: #ffffff;
    max-width: 520px;
    margin: 20px;
    padding: 35px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

#cca-modal .cca-modal-content h2 {
    margin-top: 0;
    font-size: 22px;
    color: #222;
}

#cca-modal .cca-modal-content p {
    font-size: 15.5px;
    line-height: 1.65;
    color: #333;
    margin-bottom: 25px;
}

#cca-modal .cca-buttons {
    margin-top: 25px;
}

#cca-modal .cca-btn {
    display: inline-block;
    padding: 13px 32px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    min-width: 120px;
    margin: 0 8px;
    transition: background-color 0.2s ease;
}

#cca-modal .cca-btn-agree {
    background: #0073aa;
    color: #ffffff;
}

#cca-modal .cca-btn-agree:hover {
    background: #005a87;
}

#cca-modal .cca-btn-cancel {
    background: #e0e0e0;
    color: #333;
}

#cca-modal .cca-btn-cancel:hover {
    background: #d0d0d0;
}