/* Gifts CSS */

/* Gift container positioning */
.gift-overlay {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    pointer-events: auto;
    width: 100%;
    margin-top: 0;
    transition: all 0.3s ease;
}

/* When the container is inside the obscuracams_video_wrapper */
#obscuracams_video_wrapper {
    display: flex;
    flex-direction: column;
    position: relative; /* Ensure it's a positioning context for absolute children */
}

#obscuracams_video_wrapper .gift-overlay {
    margin-top: auto; /* Push it to the bottom if there's space */
}

.gift-overlay:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Style transition for dependent elements */
.chat-dependent {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* When displayed, ensure visibility */
.chat-dependent[style*="display: flex"] {
    opacity: 1;
    transform: translateY(0);
} 