/* ============================================
   LUMA INFO BOX
   ============================================ */
.luma-info-box {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(13, 202, 240, 0.05);
    border: 1px solid rgba(13, 202, 240, 0.2);
    border-radius: 12px;
    margin-top: 1.5rem;
}

[data-bs-theme="dark"] .luma-info-box {
    background: rgba(13, 202, 240, 0.1);
    border-color: rgba(13, 202, 240, 0.3);
}

.luma-info-box-icon {
    flex-shrink: 0;
    color: #0dcaf0;
    display: flex;
    align-items: flex-start;
    height: 20px;
}

.luma-info-box-content {
    flex: 1;
    min-width: 0;
}

.luma-info-box-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.luma-info-box-message {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Participant profile create — “Profile required” callout */
.luma-info-box.luma-info-box--profile-required {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(13, 202, 240, 0.05);
    border: 1px solid rgba(13, 202, 240, 0.2);
    border-radius: 12px;
    margin-top: 0;
    margin-bottom: 1.2rem;
}

[data-bs-theme="dark"] .luma-info-box.luma-info-box--profile-required {
    background: rgba(13, 202, 240, 0.1);
    border-color: rgba(13, 202, 240, 0.3);
}

@media (max-width: 575.98px) {
    .luma-info-box.luma-info-box--profile-required {
        gap: 0.75rem;
        padding: 0.75rem 0.875rem;
    }

    .luma-info-box.luma-info-box--profile-required .luma-info-box-message {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}
