/* youtube_playlist_styles5.css */

/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

h1, h2 {
    color: #333;
}

input, button {
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
}

#results, #preview, #playlist {
    margin: 20px auto;
    max-width: 90%;
}

.video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.video-item img {
    width: 100%;
    max-width: 150px;
    height: auto;
}

.video-item span {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.video-item button {
    margin: 5px 0;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.video-item button:hover {
    background-color: #0056b3;
}

iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
}

/* Responsive styles */
@media (min-width: 600px) {
    .video-item {
        flex-direction: row;
        align-items: center;
    }

    .video-item img {
        margin-right: 10px;
    }

    .video-item button {
        margin: 0 5px;
    }

    .video-item span {
        flex-grow: 1;
        text-align: left;
    }
}
