input {
    font-size: 1.8em;

}

a {
    color: #e27e7e;
}

/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    /* Dark background color */
    color: #e0e0e0;
    /* Light text color for contrast */
    margin: 0;
    padding: 0;
}

/* Container for the video list */
.video-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1e1e1e;
    /* Slightly lighter background for the container */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

ul {
    padding: 0px;
}

li {
    list-style-type: none;
    display: inline;
}

/* Video list styling */
.video-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual video item */
.video-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px solid #333;
    transition: background-color 0.3s ease;
}

.video-item:hover {
    background-color: #2a2a2a;
    /* Darker background on hover */
}

/* Thumbnail image styling */
.video-thumbnail {
    width: 125px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 0px;
}

/* Video title styling */
.video-title {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    /* White color for text */
    margin: 0;
    line-height: 1.2;
}

/* Video description styling */
.video-description {
    font-size: 14px;
    color: #b0b0b0;
    /* Light grey color for description */
    margin: 5px 0 0;
}

/* Additional information or metadata */
.video-meta {
    font-size: 12px;
    color: #888888;
    /* Even lighter grey for metadata */
    margin-top: 5px;
}


.fave-button {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    display: inline-block;
    color: gold;
    transition: transform 0.2s;
}

.fave-button:hover {
    transform: scale(1.2);
}

.star-button:active {
    transform: scale(1);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .video-thumbnail {
        width: 125px;
        /* height: 67px; */
    }

    .video-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-title {
        font-size: 14px;
    }

    .video-description {
        font-size: 12px;
    }

    .video-meta {
        font-size: 10px;
    }
}