/* Custom styles for Jellyfin Fetcher */

body {
    padding-bottom: 100px;
}

.fixed-bottom {
    z-index: 1030;
}

#downloadBar {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.draggable {
    cursor: move;
}

.dragging {
    opacity: 0.5;
}

/* Hoster list items */
.hoster-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 5px;
    background: var(--bs-dark);
    border: 1px solid var(--bs-border-color);
    border-radius: 4px;
    cursor: move;
    user-select: none;
}

.hoster-item:hover {
    background: var(--bs-secondary-bg);
}

.drag-handle {
    cursor: grab;
}

.drag-handle:active {
    cursor: grabbing;
}

/* Episode status badges */
.badge {
    font-size: 0.75rem;
}

/* IMDb search results */
.imdb-result-item {
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid var(--bs-border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.imdb-result-item:hover {
    background: var(--bs-secondary-bg);
}

.imdb-result-item img {
    width: 60px;
    height: 90px;
    object-fit: cover;
    flex-shrink: 0;
}

.imdb-result-info {
    flex: 1;
    min-width: 0;
}

/* Loading spinner */
.spinner-container {
    text-align: center;
    padding: 20px;
}

/* Season checkbox indeterminate state */
.season-checkbox:indeterminate {
    opacity: 0.5;
}
