.daily-video-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
}

.video-wrapper {
    position: relative;
    width: 100%;
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.video-controls {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.video-controls button {
    background: none;       /* Arka plan kaldırıldı */
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 16px;
}
.video-controls button:hover {
    color: #ff0000; /* istersen hover rengi kırmızı olabilir */
}


/* Mobilde %50 küçültme */
@media (max-width: 600px) {
    .daily-video-popup {
        width: 50%;
        bottom: 10px;
        right: 10px;
    }
}
