.crm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.crm-modal {
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.crm-modal h2 {
    margin-top: 0;
    color: #333;
}

.crm-modal p {
    margin: 20px 0;
    font-size: 1.05em;
    color: #555;
}

.crm-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.crm-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    background: #f0f0f0;
    color: #333;
    transition: background 0.2s;
}

.crm-btn-primary {
    background: #007cba;
    color: #fff;
}
.crm-btn-primary:hover {
    background: #005a87;
}
.crm-btn:hover {
    background: #e0e0e0;
}