.video-info-extractor {
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#inputHtmlBlock {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    resize: vertical;
}

.button-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.vie-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
    font-weight: bold;
}

.vie-button:hover {
    background-color: #0056b3;
}

#outputTable {
    overflow-x: auto;
}

#outputTable table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
}

#outputTable th, #outputTable td {
    padding: 12px;
    text-align: left;
    border: 1px solid #dee2e6;
}

#outputTable th {
    background-color: #f1f3f5;
    font-weight: bold;
}

#outputTable img {
    max-width: 120px;
    height: auto;
    border-radius: 4px;
}

#outputTable tr:nth-child(even) {
    background-color: #f8f9fa;
}

#outputTable tr:hover {
    background-color: #e9ecef;
}