@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';
@import '_content/BlazorDateRangePicker/BlazorDateRangePicker.iitr8bszy4.bundle.scp.css';

/* /Components/DashboardSelectComponent.razor.rz.scp.css */
/* Select with same styling as above */
.dashboard-select[b-1ws0x9i0ms] {
    background-color: #f9f9f9;
    border: 0.0625rem solid #333333;
    border-radius: 0.25rem;
    font-size: 1rem;
    color: #999;
    padding: 0.5rem 2rem 0.5rem 3rem;
    box-sizing: border-box;
    width: 10rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* Dual arrow icon */
    background: url('/images/arrow-icon.svg') no-repeat right 0.75rem center;
    background-size: 1rem 1rem;
}

    .dashboard-select option[b-1ws0x9i0ms] {
        color: #333; /* Darker text for dropdown entries */
    }

        .dashboard-select option:checked[b-1ws0x9i0ms] {
            color: #999; /* Lighter color for the selected item in the open dropdown */
        }

    .dashboard-select:hover[b-1ws0x9i0ms] {
        border-color: #444444;
    }


    .dashboard-select.metric[b-1ws0x9i0ms] {
        background: url('/Images/metric-icon.svg') no-repeat left 0.75rem center, url('/images/arrow-icon.svg') no-repeat right 0.75rem center;
    }

    .dashboard-select.arrange-by[b-1ws0x9i0ms] {
        background: url('/Images/arrange-by-icon.svg') no-repeat left 0.75rem center, url('/images/arrow-icon.svg') no-repeat right 0.75rem center;
    }

.placeholder[b-1ws0x9i0ms] {
    color: #E0E0E0;
}
/* /Components/VideosComponent.razor.rz.scp.css */
/* Container for the entire list of videos */
.video-list-container[b-4evcdrp9o7] {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Space between each video item */
    margin: 1rem 0;
    max-width: 800px; /* Adjust as needed */
}

/* Each individual video item */
.video-item[b-4evcdrp9o7] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #333333; /* Subtle dark border to blend with the #181818 background */
    border-radius: 4px;
    background-color: #202020; /* Dark container background */
    color: #E0E0E0; /* Ensure text remains light */
    transition: background-color 0.15s ease, transform 0.15s ease;
}

    /* Change background on hover to give a clickable feel */
    .video-item:hover[b-4evcdrp9o7] {
        background-color: #2c2c2c;
        cursor: pointer;
    }

    .video-item:active[b-4evcdrp9o7] {
        background-color: #1a1a1a;
    }

    .video-item.selected[b-4evcdrp9o7] {
        background-color: #444444;
    }

/* Thumbnail styling */
.video-thumbnail[b-4evcdrp9o7] {
    object-fit: cover;
    border-radius: 4px;
}
    .video-thumbnail.youtube[b-4evcdrp9o7] {
        width: 10rem;
        height: 5.625rem;
    }
    .video-thumbnail.tiktok[b-4evcdrp9o7] {
        width: 5.625rem;
        height: 10rem;
    }
    .video-thumbnail.instagram[b-4evcdrp9o7] {
        width: 5.625rem;
        height: 10rem;
    }

/* Container for details on the right */
.video-details[b-4evcdrp9o7] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Title styling */
.video-title[b-4evcdrp9o7] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #E0E0E0; /* Consistent with dark mode text */
}

/* Row that holds views/published info */
.video-metadata[b-4evcdrp9o7] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #b3b3b3; /* Slightly lighter to distinguish from title text */
    margin-bottom: 0.5rem;
}

/* Row that holds likes/dislikes/comments */
.video-feedback[b-4evcdrp9o7] {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #b3b3b3;
}

video-display[b-4evcdrp9o7] {
    display: block;
    width: 100%;
    height: 25rem;
    overflow: scroll;
}

/* Container for the sort label and select */
.sort-container[b-4evcdrp9o7] {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

/* Label styling */
.sort-label[b-4evcdrp9o7] {
    margin-right: 0.5rem;
    font-weight: bold;
    color: #E0E0E0;
    font-size: 1rem;
}

/* Sort select element styling */
.sort-select[b-4evcdrp9o7] {
    background-color: #202020; /* Dark background */
    border: 0.0625rem solid #333333; /* Subtle dark border */
    border-radius: 0.25rem;
    color: #E0E0E0; /* Light text */
    padding: 0.5rem 2.5rem 0.5rem 1rem; /* Room for text & dropdown icon */
    font-size: 1rem;
    appearance: none; /* Remove default arrows */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-size: 1rem;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

    /* Hover effect on the select */
    .sort-select:hover[b-4evcdrp9o7] {
        border-color: #444444;
    }

    /* If you want a consistent placeholder style, you can do: */
    .sort-select option:disabled[b-4evcdrp9o7] {
        color: #888888;
    }
