.vlp-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 9999;
    display: none;
    opacity: 0.9;
}

.vlp-toast-center {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0066FF;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    z-index: 9999;
    display: none;
}

@keyframes vlpToastFade {
    0%   { opacity: 0; transform: translateY(20px); }
    10%  { opacity: 1; transform: translateY(0); }
    90%  { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

/* Goal confirmation card: hidden so user can just reply "Yes" in chat; card stays in DOM for create-from-reply */
.vlp-goal-confirm-card-hidden {
    display: none !important;
}

/* Shared coach table styles (vlp_ai_assistant_onboarding + blcs_display_ai_assistants) */
.vlp-coach-specialty-cell {
    background-color: #fff5ee;
}

.vlp-coach-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.vlp-coach-modal__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background: white;
    padding: 20px;
    border: 12px solid #0066ff;
    text-align: center;
}

.vlp-coach-modal__image {
    max-width: 100%;
    margin-bottom: 15px;
}

.vlp-coach-modal__button {
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 16px;
}

.vlp-coach-modal__button--primary {
    background: #0066FF;
    margin-right: 10px;
}

.vlp-coach-modal__button--secondary {
    background: #FF6600;
}

.select-coach-btn {
    padding: 10px 20px;
    font-size: 16px;
}

.vlp-coach-modal__close {
    margin-top: 10px;
    padding: 8px 16px;
    background: #FF6600;
    color: white;
    border: none;
    cursor: pointer;
}
