/* /Components/DirectoryItem.razor.rz.scp.css */
.directory-item[b-apvgqnc6qw] {
    background-color: #f8f9fa;
    border: 2px solid green;
    border-radius: 4px;
    display: inline-block;
    margin: 4px;
    min-height: 80px;
    min-width: 200px;
    padding: 12px;
    text-align: center;
    vertical-align: top;
}

.directory-content[b-apvgqnc6qw] {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
}

.directory-name[b-apvgqnc6qw] {
    color: #333;
    font-weight: 500;
    word-wrap: break-word;
}
/* /Components/MovieCard.razor.rz.scp.css */
.movie-card[b-g3i8lbvhk9] {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    margin: 8px;
    max-width: 300px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.movie-card:hover[b-g3i8lbvhk9] {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.movie-poster[b-g3i8lbvhk9] {
    aspect-ratio: 2/3;
    overflow: hidden;
    position: relative;
}

.movie-poster img[b-g3i8lbvhk9] {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.movie-info[b-g3i8lbvhk9] {
    padding: 16px;
}

.movie-title[b-g3i8lbvhk9] {
    color: #333;
    font-size: 1.1em;
    font-weight: 600;
    margin: 0 0 8px 0;
    word-wrap: break-word;
}

.movie-details[b-g3i8lbvhk9] {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.movie-year[b-g3i8lbvhk9] {
    background-color: #e9ecef;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 500;
    padding: 2px 6px;
}

.movie-resolution[b-g3i8lbvhk9] {
    background-color: #007bff;
    border-radius: 4px;
    color: white;
    font-size: 0.8em;
    font-weight: 500;
    padding: 2px 6px;
}

.movie-hdr[b-g3i8lbvhk9] {
    background-color: #28a745;
    border-radius: 4px;
    color: white;
    font-size: 0.8em;
    font-weight: 500;
    padding: 2px 6px;
}

.movie-rating[b-g3i8lbvhk9] {
    align-items: center;
    display: flex;
    font-size: 0.9em;
    gap: 4px;
    margin-bottom: 4px;
}

.rating-label[b-g3i8lbvhk9] {
    color: #666;
}

.rating-value[b-g3i8lbvhk9] {
    background-color: #ffc107;
    border-radius: 4px;
    color: #333;
    font-weight: 600;
    padding: 2px 6px;
    cursor: context-menu;
}

.movie-runtime[b-g3i8lbvhk9] {
    color: #666;
    font-size: 0.85em;
    margin-bottom: 8px;
}

.movie-imdb a[b-g3i8lbvhk9] {
    color: #f5c518;
    font-weight: 600;
    text-decoration: none;
}

.movie-imdb a:hover[b-g3i8lbvhk9] {
    text-decoration: underline;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-mgbcvl5fly] {
    display: flex;
    flex-direction: column;
    position: relative;
}

main[b-mgbcvl5fly] { flex: 1; }

.sidebar[b-mgbcvl5fly] { background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); }

.top-row[b-mgbcvl5fly] {
    align-items: center;
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    display: flex;
    height: 3.5rem;
    justify-content: flex-end;
}

.top-row[b-mgbcvl5fly]  a, .top-row[b-mgbcvl5fly]  .btn-link {
    margin-left: 1.5rem;
    text-decoration: none;
    white-space: nowrap;
}

.top-row[b-mgbcvl5fly]  a:hover, .top-row[b-mgbcvl5fly]  .btn-link:hover { text-decoration: underline; }

.top-row[b-mgbcvl5fly]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row[b-mgbcvl5fly] { justify-content: space-between; }

    .top-row[b-mgbcvl5fly]  a, .top-row[b-mgbcvl5fly]  .btn-link { margin-left: 0; }
}

@media (min-width: 641px) {
    .page[b-mgbcvl5fly] { flex-direction: row; }

    .sidebar[b-mgbcvl5fly] {
        height: 100vh;
        position: sticky;
        top: 0;
        width: 250px;
    }

    .top-row[b-mgbcvl5fly] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-mgbcvl5fly]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-mgbcvl5fly], article[b-mgbcvl5fly] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-7cuj2e76j0] { background-color: rgba(255, 255, 255, 0.1); }

.top-row[b-7cuj2e76j0] {
    background-color: rgba(0, 0, 0, 0.4);
    min-height: 3.5rem;
}

.navbar-brand[b-7cuj2e76j0] { font-size: 1.1rem; }

.bi[b-7cuj2e76j0] {
    background-size: cover;
    display: inline-block;
    height: 1.25rem;
    margin-right: 0.75rem;
    position: relative;
    top: -1px;
    width: 1.25rem;
}

.bi-house-door-fill-nav-menu[b-7cuj2e76j0] { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E"); }

.bi-plus-square-fill-nav-menu[b-7cuj2e76j0] { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E"); }

.bi-list-nested-nav-menu[b-7cuj2e76j0] { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E"); }

.bi-camera-video-fill[b-7cuj2e76j0] { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-camera-video-fill' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M0 5a2 2 0 0 1 2-2h7.5a2 2 0 0 1 1.983 1.738l3.11-1.382A1 1 0 0 1 16 4.269v7.462a1 1 0 0 1-1.406.913l-3.111-1.382A2 2 0 0 1 9.5 13H2a2 2 0 0 1-2-2V5z'/%3E%3C/svg%3E"); }

.bi-gear-fill[b-7cuj2e76j0] { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-gear-fill' viewBox='0 0 16 16'%3E%3Cpath d='M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872l-.1-.34zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z'/%3E%3C/svg%3E"); }

.nav-item[b-7cuj2e76j0] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-7cuj2e76j0] { padding-top: 1rem; }

.nav-item:last-of-type[b-7cuj2e76j0] { padding-bottom: 1rem; }

.nav-item[b-7cuj2e76j0]  a {
    align-items: center;
    border-radius: 4px;
    color: #d7d7d7;
    display: flex;
    height: 3rem;
    line-height: 3rem;
}

.nav-item[b-7cuj2e76j0]  a.active {
    background-color: rgba(255, 255, 255, 0.37);
    color: white;
}

.nav-item[b-7cuj2e76j0]  a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-7cuj2e76j0] { display: none; }

    .collapse[b-7cuj2e76j0] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-7cuj2e76j0] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Movies.razor.rz.scp.css */
.section[b-c4a2b28jj0] {
    margin-bottom: 32px;
}

.section h2[b-c4a2b28jj0] {
    border-bottom: 2px solid #007bff;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 8px;
}

.movie-grid[b-c4a2b28jj0] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
}

.directory-grid[b-c4a2b28jj0] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.ErrorMessage[b-c4a2b28jj0] {
    margin: 8px;
    color: red;
}
