#pvd-container {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.pvd-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 10px;
}

.pvd-subtitle {
    text-align: center;
    color: #cccccc;
    margin-bottom: 20px;
}

#pvd-form {
    display: flex;
    gap: 10px;
}

#pvd-video-url {
    flex-grow: 1;
    padding: 15px;
    border: 1px solid #444444;
    border-radius: 5px;
    background-color: #333333;
    color: #ffffff;
    font-size: 1em;
}

#pvd-submit-btn {
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    padding: 15px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s;
}

#pvd-submit-btn:hover {
    background-color: #dddddd;
}

#pvd-response {
    margin-top: 20px;
    padding: 15px;
    background-color: #333333;
    border-radius: 5px;
    display: none; /* Hidden by default */
}

#pvd-response.success {
    color: #4CAF50;
}

#pvd-response.error {
    color: #F44336;
}

#pvd-response a {
    color: #ffffff;
    text-decoration: underline;
}