#close-video-btn {
    position: absolute;
    top: -15px;
    right: -10px;
    width: 32px;
    height: 32px;
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, transform 0.2s;
}

#close-video-btn:hover {
    background-color: #ff1a1a;
    transform: scale(1.1);
}

#search-video-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 180px;
    width: 100%;
    max-width: 560px;
    z-index: 10;
    padding-bottom: 80px;
}

#search-video-container iframe {
    width: 100%;
    height: 315px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: none;
}

@media (max-width: 600px) {
    #search-video-container {
        top: 150px;
    }
}