/* Center confirmation modal */
.custom-modal-overlay {
    position: fixed;
    inset: 0;
    /* top:0 left:0 right:0 bottom:0 */
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    /* IMPORTANT */
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    z-index: 5000;
}

/* Confirmation box */
.custom-modal {
    background: #2b2b3d;
    color: #fff;
    padding: 20px 26px;
    border-radius: 12px;
    width: 500px;
    max-width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    animation: fadeInScale 0.25s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .aichatbuttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        /* better vertical spacing */
    }

    .aichatbuttons .btn {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
        margin-bottom: 5px;
        margin: 5px;

    }
}