/* daily-popover.css */
.daily-popover {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bs-dark);
    color: var(--bs-light);
    transform: translateY(100%);
    transition: transform 0.35s ease-in-out;
    z-index: 1080; /* above modals backdrop */
    box-shadow: 0 -0.5rem 1rem rgba(0, 0, 0, 0.25);
}

.daily-popover a {
    color: #fff;
    text-decoration: underline !important;
}

.daily-popover.show {
    transform: translateY(0);
}

.daily-popover .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.popover-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #489fd9;
}

@media (max-width: 576px) {
    .daily-popover .container {
        flex-direction: column;
        text-align: center;
    }
}
