.hide-keep-space {

    visibility: hidden;

}

.hide-remove-space {

    display: none;

}

body {
    background-color: #fffdf9;
    font-family: 'Comic Sans MS', 'Inter', cursive, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.sticky-top-nav {
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 4px 0px rgba(0, 0, 0, 0.8);
}

.card,
.table-container {
    border: 3px solid #000;
    border-radius: 25px 8px 25px 8px / 8px 25px 8px 25px;
    box-shadow: 4px 4px 0px #000;
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.badge-type {
    font-size: 0.85rem;
    padding: 0.5em 0.75em;
    border: 2px solid #000;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: #198754;
    border-radius: 50%;
    border: 2px solid #000;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }

    70% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(0.95);
        opacity: 1;
    }
}

footer {
    border-top: 3px solid #000;
    background-color: #f8f9fa;
}

.hiddenElement {
    display: none !important;
}