.input-field {
    min-width: 500px !important;
    margin-left: auto;
    margin-right: auto;
    border: solid 1px;
    border-color: #525252;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
}

iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: scale(1.02);
}

.thumbnail-wrapper {
    position: relative;
}

.thumbnail-wrapper img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.thumbnail-wrapper button {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    margin-top: 10px;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    background-color: #007cba;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.thumbnail-wrapper button:hover {
    background-color: #00629b;
}

.thumbnail-wrapper button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.6);
}