/* General Styles */
.yt-thumbnail-downloader-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Input Field */
#yt-thumbnail-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

/* Fetch Thumbnail Button */
#yt-thumbnail-button {
    padding: 10px 20px;
    background-color: #27C981;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
}

#yt-thumbnail-button:hover {
    background-color: #1fa769;
}

#yt-thumbnail-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Thumbnail Results Section */
.yt-thumbnail-results {
    margin-top: 20px;
    display: none;
}

#yt-thumbnail-image {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Download Button */
#yt-thumbnail-download button {
    padding: 10px 20px;
    background-color: #25362E;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

#yt-thumbnail-download button:hover {
    background-color: #1c2b25;
}

/* Subtitle */
.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

/* Responsive Styles */
@media (min-width: 600px) {
    #yt-thumbnail-input {
        width: 80%;
    }

    #yt-thumbnail-button {
        width: auto;
    }

    #yt-thumbnail-download button {
        width: auto;
    }
}