/* Container Styling */
#yte-container {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    border-radius: 10px;
    background: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: auto;
}

/* Heading Styling */
#yte-container h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Form Input Styling */
#yte-container input {
    padding: 10px;
    font-size: 16px;
    width: calc(100% - 24px);
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

/* Button Styling */
#yte-container button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background: #0073e6;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#yte-container button:hover {
    background: #005bb5;
}

/* Image Styling */
#yte-container img {
    margin-top: 20px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Download Button Styling */
#yte-download-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background: #28a745;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

#yte-download-btn:hover {
    background: #218838;
}

/* Responsive Styling */
@media (max-width: 600px) {
    #yte-container {
        padding: 10px;
        margin-top: 20px;
    }

    #yte-container h1 {
        font-size: 20px;
    }

    #yte-container button, #yte-download-btn {
        width: calc(100% - 24px);
    }
}
