:global(body) {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

:global(main) {
    flex: 1;
}

footer {
    margin-top: auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

#about-beta-modul {
    position: absolute;
    top: 60px;
    right: 20px;
    z-index: 100;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

#about-beta-modul.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mini-warning {
    cursor: pointer;
}

#modul-buble-triangle {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #2c2c2c;
    margin: 0 auto 0 auto;
    position: relative;
    top: 1px;
}

#modul-buble {
    background-color: #2c2c2c;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    min-width: 250px;
    max-width: 350px;
    font-size: 0.85rem;
    line-height: 1.4;
}

#modul-buble::before {
    content: "🚧 Development Status";
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #ffcc00;
}

#modul-buble::after {
    content: "This site is actively being developed. Check the GitHub repo for latest commits and progress updates.";
    display: block;
}