.ac-modal {
    position: fixed;
    top: 0; left: 0; right:0; bottom:0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}
.ac-modal-content {
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 350px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
#ac-logo {
    margin-bottom: 20px;
}
.ac-message p {
    margin:0!important;
}
.ac-message {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.ac-icon {
    font-size: 30px;
    color: #e03e2f;
}
.ac-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.ac-btn {
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.ac-btn-yes {
    background: #28a745;
    color: #fff;
}
.ac-btn-yes:hover {
    background: #218838;
}
.ac-btn-no {
    background: #dc3545;
    color: #fff;
}
.ac-btn-no:hover {
    background: #c82333;
}
