* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0f0f0f;
    color: #ffffff;
    overflow-x: hidden;
}

.app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background: #1a1a1a;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.header h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.header h1 i {
    color: #e50914;
    margin-right: 0.5rem;
}

.header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.switch-user-btn {
    background: #333;
    color: #ccc;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.switch-user-btn:hover {
    background: #444;
    color: #fff;
    transform: translateY(-1px);
}

.import-netflix-btn {
    background: #e50914;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.75rem;
}

.import-netflix-btn:hover {
    background: #b8070f;
    transform: translateY(-1px);
}

.add-media-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.add-media-btn:hover {
    background: #5a6fd8;
    transform: translateY(-1px);
}

/* Main Content */
.main-content {
    display: flex;
    flex: 1;
    height: calc(100vh - 80px);
}

/* Sidebar */
.sidebar {
    width: 300px;
    background: #1a1a1a;
    padding: 1.5rem;
    border-right: 1px solid #333;
    overflow-y: auto;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.filter-header i {
    color: #e50914;
    font-size: 0.9rem;
}

.filter-header label {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    background: #2a2a2a;
    border: 1px solid #444;
    color: #ccc;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.filter-btn:hover {
    background: #333;
    border-color: #555;
    color: #fff;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: #e50914;
    border-color: #e50914;
    color: white;
}

.filter-btn.active:hover {
    background: #b8070f;
    border-color: #b8070f;
}

.filter-btn i {
    font-size: 0.75rem;
}

/* Kanban Board */
.kanban-board {
    flex: 1;
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
}

.column {
    flex: 1;
    min-width: 280px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    max-height: 100%;
}

.column-header {
    padding: 1rem;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.column-header h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.column-header .count {
    background: #e50914;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.column-content {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    min-height: 200px;
}

/* Media Cards */
.media-card {
    background: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: grab;
    transition: all 0.3s ease;
    border: 1px solid #444;
    overflow: hidden;
}

.media-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
    border-color: #e50914;
}

.media-card.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
    cursor: grabbing;
}

.card-poster {
    width: 100%;
    height: 200px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-poster .placeholder {
    color: #666;
    font-size: 3rem;
}

.card-info {
    padding: 1rem;
}

.card-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #ccc;
}

.card-duration {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #ffd700;
}

.media-type-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* Card Sizes */
.card-size-xs .card-poster {
    height: 100px;
}

.card-size-xs .card-info {
    padding: 0.4rem;
}

.card-size-xs .card-title {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.card-size-xs .card-meta {
    font-size: 0.65rem;
}

.card-size-xs .media-type-badge {
    font-size: 0.55rem;
    padding: 0.15rem 0.3rem;
}

.card-size-small .card-poster {
    height: 120px;
}

.card-size-small .card-info {
    padding: 0.5rem;
}

.card-size-small .card-title {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.card-size-small .card-meta {
    font-size: 0.7rem;
}

.card-size-small .media-type-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.4rem;
}

.card-size-large .card-poster {
    height: 250px;
}

.card-size-large .card-info {
    padding: 1.25rem;
}

/* Drag and Drop */
.column-content.drag-over {
    background: rgba(229, 9, 20, 0.1);
    border: 2px dashed #e50914;
    border-radius: 8px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border: 1px solid #333;
    overflow: hidden;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.3rem;
    color: #e50914;
}

.close-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #333;
    color: white;
}

.modal-body {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.search-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.search-container input {
    flex: 1;
    padding: 0.75rem;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
}

.search-container input:focus {
    outline: none;
    border-color: #e50914;
}

.search-container button {
    padding: 0.75rem 1rem;
    background: #e50914;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-container button:hover {
    background: #b8070f;
}

.add-status-selection {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: #2a2a2a;
    border-radius: 6px;
    border: 1px solid #444;
}

.add-status-selection label {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.add-status-selection select {
    flex: 1;
    padding: 0.5rem;
    background: #333;
    border: 1px solid #555;
    border-radius: 4px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
}

.add-status-selection select:focus {
    outline: none;
    border-color: #e50914;
}

.search-results {
    display: grid;
    gap: 1rem;
}

.search-result {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #444;
}

.search-result:hover {
    background: #333;
    border-color: #e50914;
}

.search-result-poster {
    width: 60px;
    height: 90px;
    background: #333;
    border-radius: 4px;
    flex-shrink: 0;
    overflow: hidden;
}

.search-result-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-info {
    flex: 1;
}

.search-result-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.search-result-meta {
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.search-result-overview {
    font-size: 0.8rem;
    color: #aaa;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Loading */
.loading {
    text-align: center;
    padding: 2rem;
    color: #ccc;
}

/* Details Modal */
.details-modal {
    max-width: 810px;
    max-height: 90vh;
}

.details-content {
    display: flex;
    gap: 2rem;
}

.details-poster {
    flex-shrink: 0;
    width: 300px;
}

.details-poster img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.details-poster .placeholder {
    width: 100%;
    height: 450px;
    background: #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #666;
}

.details-info {
    flex: 1;
    min-width: 0;
}

.details-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    line-height: 1.2;
}

.details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #ccc;
}

.details-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.details-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffd700;
    font-weight: 600;
}

.details-overview {
    margin-bottom: 1.5rem;
}

.details-overview h3 {
    color: #e50914;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.details-overview p {
    line-height: 1.6;
    color: #ddd;
}

.details-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    align-items: center;
}

.status-select {
    flex: 1;
    padding: 0.5rem 0.75rem;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 4px;
    color: white;
    font-size: 0.85rem;
    min-width: 0;
}

.status-select:focus {
    outline: none;
    border-color: #e50914;
}

.remove-btn {
    padding: 0.5rem 1rem;
    background: #dc3545;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.remove-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.add-btn {
    padding: 0.5rem 1rem;
    background: #28a745;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.add-btn:hover {
    background: #218838;
    transform: translateY(-1px);
}

.add-instructions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 6px;
    color: #28a745;
    font-size: 0.9rem;
    font-style: italic;
}

.add-instructions i {
    color: #28a745;
    font-size: 0.8rem;
}

.details-genres {
    margin-bottom: 1rem;
}

.genre-tag {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.details-cast {
    margin-top: 1.5rem;
}

.details-cast h3 {
    color: #e50914;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.cast-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cast-member {
    background: #333;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* User Selection Modal */
.user-selection {
    text-align: center;
}

.user-selection h3 {
    color: #e50914;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.user-selection h4 {
    color: #fff;
    margin: 2rem 0 1rem 0;
    font-size: 1rem;
}

.existing-users {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2rem;
    max-height: 200px;
    overflow-y: auto;
}

.user-card {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.user-card:hover {
    background: #333;
    border-color: #e50914;
    transform: translateY(-1px);
}

.user-card i {
    color: #e50914;
    font-size: 1.2rem;
}

.user-card span {
    font-weight: 500;
    color: #fff;
}

.create-user-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.create-user-form input {
    flex: 1;
    max-width: 300px;
    padding: 0.75rem;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
}

.create-user-form input:focus {
    outline: none;
    border-color: #e50914;
}

.create-user-form button {
    padding: 0.75rem 1.5rem;
    background: #e50914;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.create-user-form button:hover {
    background: #b8070f;
    transform: translateY(-1px);
}

.create-user-form button:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
}

.no-users-message {
    color: #ccc;
    font-style: italic;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 8px;
    border: 1px dashed #444;
}

/* Mobile List View Styles */
.mobile-list-view {
    display: none;
    padding: 1rem;
    max-width: 100%;
}

.mobile-media-item {
    display: flex;
    background: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #444;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-media-item:hover {
    border-color: #e50914;
    transform: translateY(-1px);
}

.mobile-poster {
    width: 80px;
    height: 120px;
    background: #333;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mobile-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-poster .placeholder {
    color: #666;
    font-size: 1.5rem;
}

.mobile-info {
    flex: 1;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.mobile-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.75rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.mobile-status-badge {
    background: #e50914;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: capitalize;
    white-space: nowrap;
}

.mobile-status-badge.to-watch { background: #6c757d; }
.mobile-status-badge.in-progress { background: #ffc107; color: #000; }
.mobile-status-badge.watching { background: #28a745; }
.mobile-status-badge.waiting { background: #17a2b8; }
.mobile-status-badge.watched { background: #e50914; }

.mobile-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #ffd700;
}

.mobile-type-badge {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.6rem;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .main-content {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #333;
        padding: 1rem;
    }
    
    .filter-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .kanban-board {
        overflow-x: auto;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .column {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    /* Mobile-first approach */
    body {
        overflow-x: hidden;
    }
    
    .app {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    /* Mobile Header */
    .header {
        padding: 0.75rem 1rem;
        position: sticky;
        top: 0;
        z-index: 100;
        background: #1a1a1a;
        border-bottom: 1px solid #333;
    }
    
    .header h1 {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .switch-user-btn {
        width: 40px;
        height: 40px;
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .add-media-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    /* Mobile Main Content */
    .main-content {
        flex-direction: column;
        flex: 1;
        height: auto;
    }
    
    /* Mobile Sidebar - Stacked Filters */
    .sidebar {
        width: 100%;
        height: auto;
        padding: 1rem;
        border-right: none;
        border-bottom: 1px solid #333;
        background: #1a1a1a;
        overflow: visible;
    }
    
    .filter-section {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group {
        margin-bottom: 0;
    }
    
    /* Hide card size filter on mobile */
    .filter-group:has([data-filter="cardSize"]) {
        display: none;
    }
    
    .filter-header {
        margin-bottom: 0.75rem;
    }
    
    .filter-header label {
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    .button-group {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        flex: 1;
        min-width: 0;
        text-align: center;
        justify-content: center;
    }
    
    /* Hide kanban board completely */
    .kanban-board {
        display: none !important;
    }
    
    /* Mobile List View */
    .mobile-list-view {
        display: block !important;
        flex: 1;
        padding: 1rem;
        overflow-y: auto;
        background: #0f0f0f;
    }
    
    /* Mobile Media Items */
    .mobile-media-item {
        background: #1a1a1a;
        border-radius: 12px;
        margin-bottom: 1rem;
        border: 1px solid #333;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-media-item:active {
        transform: scale(0.98);
        background: #222;
    }
    
    .mobile-poster {
        width: 80px;
        height: 120px;
        background: #333;
        border-radius: 8px;
        margin: 0.75rem;
        flex-shrink: 0;
        overflow: hidden;
        position: relative;
    }
    
    .mobile-poster img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .mobile-poster .placeholder {
        color: #666;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    
    .mobile-info {
        flex: 1;
        padding: 0.75rem 0.75rem 0.75rem 0;
        min-width: 0;
    }
    
    .mobile-title {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        line-height: 1.3;
        color: #fff;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .mobile-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        align-items: center;
        margin-bottom: 0.75rem;
    }
    
    .mobile-status-badge {
        background: #e50914;
        color: white;
        padding: 0.3rem 0.6rem;
        border-radius: 16px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mobile-status-badge.to-watch { background: #6c757d; }
    .mobile-status-badge.in-progress { background: #ffc107; color: #000; }
    .mobile-status-badge.watching { background: #28a745; }
    .mobile-status-badge.waiting { background: #17a2b8; }
    .mobile-status-badge.watched { background: #e50914; }
    
    .mobile-rating {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        color: #ffd700;
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .mobile-type-badge {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 0.2rem 0.4rem;
        border-radius: 4px;
        font-size: 0.6rem;
        text-transform: uppercase;
        font-weight: 600;
    }
    
    /* Mobile Details Modal */
    .modal {
        padding: 0;
        align-items: flex-end;
    }
    
    .modal.active {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .modal-content {
        width: 100%;
        max-width: none;
        max-height: 90vh;
        margin: 0;
        border-radius: 16px 16px 0 0;
        background: #1a1a1a;
        border: none;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    }
    
    .modal-header {
        padding: 1rem;
        border-bottom: 1px solid #333;
        position: relative;
    }
    
    .modal-header::before {
        content: '';
        position: absolute;
        top: 0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: #666;
        border-radius: 2px;
    }
    
    .modal-header h2 {
        font-size: 1.1rem;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .close-btn {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        padding: 0.5rem;
    }
    
    .modal-body {
        padding: 1rem;
        max-height: 70vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .details-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .details-poster {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .details-title {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .details-meta {
        justify-content: center;
        gap: 0.75rem;
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
    
    .details-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .status-select {
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .remove-btn {
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    /* Search Modal */
    .search-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .search-container input {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .search-container button {
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .add-status-selection {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .add-status-selection label {
        font-size: 1rem;
    }
    
    .add-status-selection select {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .search-result {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .search-result-poster {
        width: 60px;
        height: 90px;
    }
    
    /* User Selection Modal */
    .user-card {
        padding: 1rem;
        border-radius: 12px;
        font-size: 1rem;
    }
    
    .create-user-form input {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .create-user-form button {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0.75rem;
    }
    
    .header h1 {
        font-size: 1rem;
    }
    
    .add-media-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .sidebar {
        padding: 0.5rem;
    }
    
    .filter-section {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .filter-group {
        margin-bottom: 0.5rem;
    }
    
    .mobile-list-view {
        padding: 0.5rem;
    }
    
    .mobile-media-item {
        margin-bottom: 0.75rem;
    }
    
    .mobile-poster {
        width: 70px;
        height: 105px;
    }
    
    .mobile-info {
        padding: 0.5rem;
    }
    
    .mobile-title {
        font-size: 0.85rem;
    }
    
    .mobile-meta {
        font-size: 0.7rem;
        gap: 0.25rem;
    }
    
    .mobile-status-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
    
    .modal {
        padding: 0.5rem;
        padding-top: 1rem;
    }
    
    .modal-content {
        max-height: calc(100vh - 2rem);
        border-radius: 6px;
    }
    
    .modal-header {
        padding: 0.75rem;
    }
    
    .modal-header h2 {
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 0.75rem;
        max-height: calc(100vh - 8rem);
    }
    
    .details-poster {
        max-width: 140px;
    }
    
    .details-title {
        font-size: 1.2rem;
    }
    
    .details-meta {
        font-size: 0.75rem;
    }
}

/* Instruction Messages */
.move-instructions, .add-instructions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.move-instructions.orange {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
    color: #ff9800;
}

.move-instructions.orange i {
    color: #ff9800;
}

.add-instructions.green {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.add-instructions.green i {
    color: #4caf50;
}/* 
Copy to User Button */
.copy-to-user-btn {
    background: #17a2b8;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.copy-to-user-btn:hover {
    background: #138496;
    transform: translateY(-1px);
}

.copy-to-user-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

/* Copy to User Modal */
.copy-to-user-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.copy-item-card {
    display: flex;
    background: #2a2a2a;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #444;
    gap: 1rem;
    align-items: center;
}

.copy-item-poster {
    width: 60px;
    height: 90px;
    background: #333;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.copy-item-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.copy-item-poster i {
    color: #666;
    font-size: 1.5rem;
}

.copy-item-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #fff;
}

.copy-item-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #ccc;
}

.copy-user-selection h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.copy-users-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.copy-user-card {
    background: #2a2a2a;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.copy-user-card:hover {
    background: #333;
    border-color: #17a2b8;
    transform: translateY(-1px);
}

.copy-user-card.active {
    background: #17a2b8;
    border-color: #17a2b8;
    color: white;
}

.copy-user-card i {
    color: #17a2b8;
    font-size: 1.2rem;
}

.copy-user-card.active i {
    color: white;
}

.copy-user-card span {
    font-weight: 500;
    color: #fff;
}

.copy-options {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
}

.copy-options h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.copy-status-selection,
.copy-preference-selection {
    margin-bottom: 1rem;
}

.copy-status-selection label,
.copy-preference-selection label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ccc;
}

.copy-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.copy-actions .btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.copy-actions .btn-primary {
    background: #17a2b8;
    color: white;
}

.copy-actions .btn-primary:hover {
    background: #138496;
    transform: translateY(-1px);
}

.copy-actions .btn-secondary {
    background: #6c757d;
    color: white;
}

.copy-actions .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.no-users-message,
.error-message {
    color: #ccc;
    font-style: italic;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 8px;
    border: 1px dashed #444;
    text-align: center;
}

.error-message {
    color: #dc3545;
    border-color: #dc3545;
}

/* Mobile styles for copy to user modal */
@media (max-width: 768px) {
    .copy-users-list {
        grid-template-columns: 1fr;
    }
    
    .copy-item-card {
        flex-direction: column;
        text-align: center;
    }
    
    .copy-item-poster {
        width: 80px;
        height: 120px;
    }
    
    .copy-actions {
        flex-direction: column;
    }
    
    .copy-actions .btn {
        width: 100%;
    }
}/* Shar
e Section */
.share-section {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.share-user-btn {
    background: #e50914;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.share-user-btn:hover {
    background: #b8070f;
    transform: translateY(-1px);
}

.share-user-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

/* Copy to User Modal - Following project design */
.copy-to-user-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.copy-item-card {
    display: flex;
    background: #2a2a2a;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #444;
    gap: 1rem;
    align-items: center;
}

.copy-item-poster {
    width: 60px;
    height: 90px;
    background: #333;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.copy-item-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.copy-item-poster i {
    color: #666;
    font-size: 1.5rem;
}

.copy-item-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #fff;
}

.copy-item-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #ccc;
}

.copy-user-selection h3 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.copy-users-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.copy-user-card {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.copy-user-card:hover {
    background: #333;
    border-color: #e50914;
    transform: translateY(-1px);
}

.copy-user-card.active {
    background: #e50914;
    border-color: #e50914;
    color: white;
}

.copy-user-card i {
    color: #e50914;
    font-size: 1.2rem;
}

.copy-user-card.active i {
    color: white;
}

.copy-user-card span {
    font-weight: 500;
    color: #fff;
}

.copy-options {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
}

.copy-options h3 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.copy-status-selection,
.copy-preference-selection {
    margin-bottom: 1rem;
}

.copy-status-selection label,
.copy-preference-selection label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ccc;
    font-size: 0.9rem;
}

.copy-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.copy-actions .btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.copy-actions .btn-primary {
    background: #e50914;
    color: white;
}

.copy-actions .btn-primary:hover {
    background: #b8070f;
    transform: translateY(-1px);
}

.copy-actions .btn-primary:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.netflix-header {
	margin-bottom: 10px;
}

.title-checkbox {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.title-checkbox input {
	width: 20px;
	height: 20px;
}

.netflix-header {
	margin-bottom: 10px;
}

.netflix-header {
	margin-bottom: 10px;
}

.netflix-header {
	margin-bottom: 10px;
}

.netflix-header {
	margin-bottom: 10px;
}

.netflix-header {
	margin-bottom: 10px;
}

.netflix-header {
	margin-bottom: 10px;
}

.copy-actions .btn-secondary {
    background: #333;
    color: white;
    border: 1px solid #444;
}

.copy-actions .btn-secondary:hover {
    background: #444;
    border-color: #555;
    transform: translateY(-1px);
}

.no-users-message,
.error-message {
    color: #ccc;
    font-style: italic;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 8px;
    border: 1px dashed #444;
    text-align: center;
}

.error-message {
    color: #dc3545;
    border-color: #dc3545;
}

/* Mobile styles for copy to user modal */
@media (max-width: 768px) {
    .copy-users-list {
        grid-template-columns: 1fr;
    }
    
    .copy-item-card {
        flex-direction: column;
        text-align: center;
    }
    
    .copy-item-poster {
        width: 80px;
        height: 120px;
    }
    
    .copy-actions {
        flex-direction: column;
    }
    
    .copy-actions .btn {
        width: 100%;
    }
}/* Po
ster Actions - positioned below poster */
.poster-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.share-user-btn {
    background: #e50914;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
    max-width: 200px;
}

.share-user-btn:hover {
    background: #b8070f;
    transform: translateY(-1px);
}

.share-user-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

/* Mobile adjustments for poster actions */
@media (max-width: 768px) {
    .poster-actions {
        margin-top: 0.75rem;
    }
    
    .share-user-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        max-width: 180px;
    }
}/* Sta
tus Select Dropdowns - Consistent styling for all dropdowns */
.status-select {
    width: 100%;
    padding: 0.75rem;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.status-select:focus {
    outline: none;
    border-color: #e50914;
    background: #333;
}

.status-select:hover {
    border-color: #555;
    background: #333;
}

.status-select option {
    background: #2a2a2a;
    color: #fff;
    padding: 0.5rem;
}

/* Ensure consistent spacing for both selection containers */
.copy-status-selection,
.copy-preference-selection {
    margin-bottom: 1rem;
}

.copy-status-selection label,
.copy-preference-selection label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ccc;
    font-size: 0.9rem;
}/* Click
able Header Title */
.header-title {
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.header-title:hover {
    color: #e50914;
    transform: translateY(-1px);
}

.header-title:active {
    transform: translateY(0);
}
/* F
loating Footer */
.floating-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 8px 0;
    z-index: 100;
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-divider {
    opacity: 0.5;
}

/* Dark mode footer */
@media (prefers-color-scheme: dark) {
    .floating-footer {
        background: rgba(30, 30, 30, 0.95);
        border-top-color: var(--border-color);
    }
}

/* Add bottom padding to main content to prevent footer overlap */
.main-content {
    padding-bottom: 40px;
}

/* Mobile footer adjustments */
@media (max-width: 768px) {
    .footer-content {
        font-size: 11px;
        padding: 0 15px;
    }
    
    .main-content {
        padding-bottom: 35px;
    }
}

/* Netflix Import Modal Styles */
.import-instructions {
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.import-instructions p {
    color: #e50914;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.import-instructions ol {
    color: #ddd;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.import-instructions li {
    margin-bottom: 0.5rem;
}

.import-instructions a {
    color: #e50914;
    text-decoration: none;
    font-weight: 600;
}

.import-instructions a:hover {
    text-decoration: underline;
}

.file-upload-container {
    text-align: center;
    margin-bottom: 2rem;
}

.upload-btn {
    background: #333;
    color: white;
    border: 2px dashed #666;
    padding: 2rem 3rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 250px;
}

.upload-btn:hover {
    background: #444;
    border-color: #e50914;
    color: #e50914;
    transform: translateY(-2px);
}

.file-info {
    margin-top: 1rem;
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 8px;
    border: 1px solid #444;
    display: none;
}

.file-info.active {
    display: block;
}

.file-info .file-name {
    color: #e50914;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.file-info .file-details {
    color: #ccc;
    font-size: 0.9rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #e50914;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: #b8070f;
    transform: translateY(-1px);
}

.btn-primary:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Mobile styles for Netflix import */
@media (max-width: 768px) {
    .import-netflix-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        margin-right: 0.5rem;
    }
    
    .import-instructions {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .import-instructions p {
        font-size: 0.9rem;
    }
    
    .import-instructions ol {
        font-size: 0.85rem;
        padding-left: 1rem;
    }
    
    .upload-btn {
        padding: 1.5rem 2rem;
        font-size: 0.9rem;
        min-width: 200px;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
        font-size: 1rem;
    }
}/*
 Netflix Import Results Styles */
.netflix-results {
    padding: 1rem 0;
}

.netflix-results h3 {
    color: #e50914;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.results-summary {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.netflix-titles-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #444;
    border-radius: 8px;
    background: #2a2a2a;
    margin-bottom: 1.5rem;
}

.netflix-title-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #444;
    transition: background-color 0.2s ease;
}

.netflix-title-item:last-child {
    border-bottom: none;
}

.netflix-title-item:hover {
    background: #333;
}

.title-checkbox {
    margin-right: 1rem;
    flex-shrink: 0;
}

.netflix-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #e50914;
    cursor: pointer;
}

.title-info {
    flex: 1;
}

.title-name {
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.title-count {
    color: #999;
    font-size: 0.85rem;
}

.netflix-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.selection-controls {
    display: flex;
    gap: 0.5rem;
}

.import-controls {
    display: flex;
    gap: 0.75rem;
}

.selection-controls .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Mobile styles for Netflix results */
@media (max-width: 768px) {
    .netflix-titles-list {
        max-height: 300px;
    }
    
    .netflix-title-item {
        padding: 0.5rem 0.75rem;
    }
    
    .title-name {
        font-size: 0.9rem;
    }
    
    .title-count {
        font-size: 0.8rem;
    }
    
    .netflix-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .selection-controls,
    .import-controls {
        width: 100%;
        justify-content: center;
    }
    
    .selection-controls .btn,
    .import-controls .btn {
        flex: 1;
        min-width: 0;
    }
}

/* Scrollbar styling for Netflix titles list */
.netflix-titles-list::-webkit-scrollbar {
    width: 8px;
}

.netflix-titles-list::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.netflix-titles-list::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 4px;
}

.netflix-titles-list::-webkit-scrollbar-thumb:hover {
    background: #888;
}