/* base.css */

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #E2E8F0;
    background-color: #1A202C;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #F7FAFC;
}

/* Links */
a {
    color: #63B3ED;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
button {
    cursor: pointer;
    border: none;
}

/* Navigation Styles */
.hover-zone {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    z-index: 999;
}

.navbar-container {
    position: fixed;
    top: -64px; /* Height of your navbar */
    left: 0;
    width: 100%;
    transition: top 0.3s ease;
    z-index: 998;
}

/* Remove these styles or comment them out:
.hover-zone:hover ~ .navbar-container,
.navbar-container:hover {
    top: 0;
}
*/

.status-updated {
    animation: highlight 1.5s ease-in-out;
}

@keyframes highlight {
    0% { background-color: transparent; }
    50% { background-color: rgba(255, 255, 150, 0.5); }
    100% { background-color: transparent; }
}

/* Enhanced pulse highlight effect */
.pulse-highlight {
    animation: pulse-highlight 2s ease-in-out 1;
    position: relative;
    z-index: 10;
    background-color: rgba(255, 215, 0, 0.7) !important; /* Gold background */
    text-shadow: 0 0 2px white;
    outline: 2px solid #FF8C00; /* Dark orange outline */
    transform-origin: center;
}

@keyframes pulse-highlight {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.9);
        transform: scale(1);
    }
    25% {
        box-shadow: 0 0 0 10px rgba(255, 165, 0, 0.6);
        transform: scale(1.05);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 165, 0, 0.4);
        transform: scale(1);
    }
    75% {
        box-shadow: 0 0 0 10px rgba(255, 165, 0, 0.2);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
        transform: scale(1);
    }
}
