/* Reset default browser styles */
body,
html {
    margin: 0;
    padding: 0;
}

/* Set font family and background color */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
}

/* Video container styles */
#video-container {
    margin-top: 20px;
}

/* Table styles */
#video-container table {
    width: 100%;
    border-collapse: collapse;
}

#video-container th,
#video-container td {
    padding: 10px;
    text-align: left;
}

/* Column title row styles */
#video-container th {
    background-color: #ff0000;
    color: white;
    font-weight: bold;
}

/* Video thumbnail styles */
.video-thumbnail img {
    width: 100%;
    height: auto;
}

/* Video details styles */
.video-details {
    padding-left: 10px;
}

/* Video title and channel name styles */
.video-title,
.channel-name {
    margin: 0;
}

.video-title a,
.channel-name a {
    text-decoration: none;
    color: #333;
}

.video-title a:hover,
.channel-name a:hover {
    text-decoration: underline;
}

/* Channel name styles */
.channel-name {
    font-size: 0.8rem;
    color: #666;
}

/* Stats styles (e.g., total views, likes, comments) */
.stats {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
}

.stats span {
    display: block;
}

/* Filter bar styles */
.filter-bar {
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: start;
    gap: 20px;
}

.filter-bar label {
    margin-right: 5px;
}

.filter-bar select {
    padding: 5px;
}

.filter-bar input[type="submit"] {
    padding: 5px 15px;
    background-color: #ff0000;
    color: white;
    border: none;
    cursor: pointer;
}

/* Additional styling for drop-downs */
.filter-bar select {
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Initial message styles */
.initial-message {
    text-align: center;
    padding: 20px;
    color: #555;
    font-size: 1.2rem;
}
