/* JournalistDB — Warm Modern Theme */

html { scroll-behavior: smooth; }

/* Gradient blur orbs (Biotix-style) */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* Table styles */
.jdb-table th {
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #ece7df;
}

.jdb-table td {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border-bottom: 1px solid #f5f2ed;
}

.jdb-table tr:hover td {
    background-color: #faf9f6;
}

/* Loading spinner */
.jdb-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid #ece7df;
    border-top-color: #4F46E5;
    border-radius: 50%;
    animation: jdb-spin 0.6s linear infinite;
}

@keyframes jdb-spin {
    to { transform: rotate(360deg); }
}

/* Dashed border accent (Biotix) */
.dashed-border {
    border: 1.5px dashed rgba(11, 11, 11, 0.12);
    border-radius: 1.5rem;
}

/* Marquee scroll animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

.animate-marquee:hover {
    animation-play-state: paused;
}
