/* Custom styles for HilbreTides */

/* Countdown timer styling */
.countdown-timer {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    letter-spacing: 0.1em;
}

/* Smooth transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* Mobile menu animation */
#mobile-menu {
    transition: max-height 0.3s ease-out;
}

/* Status indicators */
.status-safe {
    color: #16a34a;
}

.status-unsafe {
    color: #dc2626;
}

.status-caution {
    color: #ea580c;
}

/* Tide height bars */
.tide-bar {
    transition: height 0.3s ease;
}

/* Print styles */
@media print {
    nav, footer {
        display: none;
    }
}

/* Admiralty copyright tooltip */
.admiralty-copyright {
    position: relative;
    display: inline-block;
}

.admiralty-copyright:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 5px;
    pointer-events: none;
}

.admiralty-copyright:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    margin-bottom: -5px;
    pointer-events: none;
}

