* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: lightgrey;
    height: auto;
    min-height: 98vh
}

.navbar-menu {
    display: flex !important;
}

.navbar-burger {
    display: none !important;
}

.notification-modal {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.notification-modal.is-active {
    visibility: visible;
    opacity: 1;
}

.is-clickable {
    cursor: pointer;
}

.tooltip-container {
    position: relative;
    cursor: pointer;
    color: #ffc107 !important;
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.2s, visibility 0.2s;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    max-width: 95vw !important;
    width: auto !important;
    max-height: 90vh;
    overflow: auto;
}