/* Custom styles for NewsyWeb */

/* Smooth transitions for htmx */
.htmx-request {
    opacity: 0.7;
    transition: opacity 300ms ease-in;
}

.htmx-settling {
    opacity: 1;
    transition: opacity 300ms ease-out;
}

/* Score bar styling */
.score-bar {
    height: 8px;
    border-radius: 4px;
    background-color: #e5e7eb;
}

.score-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Tab styling */
.tab-button {
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.tab-button.active {
    border-bottom-color: #4f46e5;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Loading indicator */
.loading-spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #4f46e5;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
