/* _content/WebApp/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-fq3qcrodmt] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-fq3qcrodmt] {
    flex: 1;
}

.sidebar[b-fq3qcrodmt] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-fq3qcrodmt] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-fq3qcrodmt]  a, .top-row[b-fq3qcrodmt]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-fq3qcrodmt]  a:hover, .top-row[b-fq3qcrodmt]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-fq3qcrodmt]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row[b-fq3qcrodmt] {
        justify-content: space-between;
    }

    .top-row[b-fq3qcrodmt]  a, .top-row[b-fq3qcrodmt]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-fq3qcrodmt] {
        flex-direction: row;
    }

    .sidebar[b-fq3qcrodmt] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-fq3qcrodmt] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-fq3qcrodmt]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-fq3qcrodmt], article[b-fq3qcrodmt] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-fq3qcrodmt] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-fq3qcrodmt] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/WebApp/Components/Pages/Home.razor.rz.scp.css */
/* _content/WebApp/Components/Pages/Poster.razor.rz.scp.css */
.square-image-container[b-wjncyf7uhz] {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 100%;
}

.square-image-container img[b-wjncyf7uhz] {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
}

.file-upload-label[b-wjncyf7uhz] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, #6a11cb, #2575fc); /* Gradient background */
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2); /* Shadow for depth */
}

.file-upload-label i[b-wjncyf7uhz] {
    font-size: 1.2rem;
}

.file-upload-label:hover[b-wjncyf7uhz] {
    background: linear-gradient(45deg, #2575fc, #6a11cb); /* Reverse gradient on hover */
    transform: translateY(-3px); /* Slight lift on hover */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

.btn-custom[b-wjncyf7uhz] {
    background: linear-gradient(45deg, #ffbb00, #ff8800);
    color: #fff;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.btn-custom:hover[b-wjncyf7uhz] {
    background: linear-gradient(45deg, #ff8800, #ff5500);
    transform: translateY(-5px);
    box-shadow: 0px 10px 15px rgba(255, 136, 0, 0.3);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .btn-custom[b-wjncyf7uhz] {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}



.uploaded-section[b-wjncyf7uhz] {
    margin-top: 20px;
}
.uploaded-card[b-wjncyf7uhz] {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}
.uploaded-card img[b-wjncyf7uhz] {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}
.remove-btn[b-wjncyf7uhz] {
    background: #f8d7da;
    color: #721c24;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.image-details[b-wjncyf7uhz] {
    margin-top: 10px;
}
.image-details input[b-wjncyf7uhz] {
    margin-bottom: 10px;
}
