/* /Pages/Loads/LoadNewPage.razor.rz.scp.css */
.flora-ai-card-wrap[b-qz3tx8u98w] {
    position: relative;
    border-radius: 13px;
    padding: 2px;
    background: linear-gradient(120deg, #6366f1, #ec4899, #f59e0b, #10b981, #6366f1);
    background-size: 300% 300%;
    animation: flora-ai-shimmer-b-qz3tx8u98w 8s ease infinite, flora-ai-glow-b-qz3tx8u98w 4s ease-in-out infinite;
}

.flora-ai-card-inner[b-qz3tx8u98w] {
    background: var(--flora-surface);
    border-radius: 11px;
    padding: 14px;
}

.flora-ai-card-wrap.flora-ai-disabled[b-qz3tx8u98w] {
    animation: none;
    background: var(--flora-border);
    box-shadow: none;
}

.flora-ai-card-wrap.flora-ai-disabled .flora-ai-card-inner[b-qz3tx8u98w] {
    opacity: 0.65;
}

@keyframes flora-ai-shimmer-b-qz3tx8u98w {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* The actual glow — animated colored box-shadow around the card, cycling through the
   same palette as the border gradient. Simpler and more reliable than a blurred
   pseudo-element copy of the background (which didn't render visibly). */
@keyframes flora-ai-glow-b-qz3tx8u98w {
    0%   { box-shadow: 0 0 16px 2px rgba(99, 102, 241, .5), 0 0 34px 8px rgba(99, 102, 241, .22); }
    33%  { box-shadow: 0 0 16px 2px rgba(236, 72, 153, .5), 0 0 34px 8px rgba(236, 72, 153, .22); }
    66%  { box-shadow: 0 0 16px 2px rgba(245, 158, 11, .5), 0 0 34px 8px rgba(245, 158, 11, .22); }
    100% { box-shadow: 0 0 16px 2px rgba(99, 102, 241, .5), 0 0 34px 8px rgba(99, 102, 241, .22); }
}

.flora-ai-dropzone[b-qz3tx8u98w] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 120px;
    border: 1.5px dashed var(--flora-border);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}

.flora-ai-dropzone:hover[b-qz3tx8u98w] {
    border-color: #6366f1;
    background: var(--flora-surface-2);
}

.flora-ai-dropzone.flora-ai-dropzone-busy[b-qz3tx8u98w] {
    cursor: not-allowed;
    opacity: 0.7;
}
/* /Pages/Statistics/OrgStatsPage.razor.rz.scp.css */
.org-stats-grid[b-8y3vk5lfr3] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.org-stats-tile[b-8y3vk5lfr3] {
    border: 1px solid var(--flora-border);
    border-radius: 8px;
    padding: 8px 10px;
    background: var(--flora-surface-2);
}

.org-stats-tile__title[b-8y3vk5lfr3] {
    font-size: 11px;
    font-weight: 600;
    color: var(--flora-text-hi);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
