/* Floating Date Indicator */
.floating-date-indicator {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Desktop adjustments */
@media (min-width: 769px) {
    .floating-date-indicator {
        top: 180px;
    }
}

.floating-date-indicator.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.floating-date-indicator.hide {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .floating-date-indicator {
        font-size: 13px;
        padding: 6px 16px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .floating-date-indicator {
        background-color: rgba(255, 255, 255, 0.9);
        color: #333;
    }
}