/*
--- AI Chatbox Modal Styles ---
*/
.aicb-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    opacity: 0;
    animation: aicb-modal-fade-in 0.3s ease forwards;
}

.aicb-modal-box {
    background: #1e1f20;
    color: #e3e3e3;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    animation: aicb-modal-scale-up 0.3s ease forwards;
}

.aicb-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
}

.aicb-modal-message {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.aicb-modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
}
.aicb-modal-close-btn:hover {
    color: #fff;
}

/* --- NEW: Action Button Styles --- */
.aicb-modal-actions {
    margin-top: 1.5rem;
}

.aicb-modal-action-btn {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s, transform 0.2s;
}

.aicb-modal-action-btn:hover {
    background-color: #1d4ed8;
    transform: scale(1.05);
}


@keyframes aicb-modal-fade-in {
    to {
        opacity: 1;
    }
}

@keyframes aicb-modal-scale-up {
    to {
        transform: scale(1);
    }
}
