/* Video Credits Styling */
.property_video {
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.video-play-overlay:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.video-play-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s;
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.video-play-btn i {
    font-size: 48px;
    margin-bottom: 10px;
    color: #fff;
}

.video-credit-info {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
}

.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 10;
}

.video-player-container {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .video-play-btn i {
        font-size: 36px;
    }
    
    .video-credit-info {
        font-size: 12px;
    }
}
