/* Simple, clean video container styles */
.card {
    border: none;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.card-body {
    padding: 1rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.embed-responsive {
    position: relative;
    width: 100%;
}

.embed-responsive iframe {
    border: none;
    display: block;
}

.local-video .play-button-overlay {
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.local-video:hover .play-button-overlay {
    opacity: 1;
}

/* YouTube play button style */
.btn-danger.rounded-circle {
    background-color: #ff0000;
    border: none;
    position: relative;
}

.btn-danger.rounded-circle::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    left: 55%;
    top: 50%;
    transform: translate(-50%, -50%);
}
