html, body {
    font-family: 'Open Sans', sans-serif;
    background-color: #1C1B1F;
    color: #E6E1E5;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

a {
    color: #D0BCFF;
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1C1B1F;
}

::-webkit-scrollbar-thumb {
    background: #49454F;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #938F99;
}

/* Blazor Error UI */
#blazor-error-ui {
    background: #F9DEDC;
    color: #410E0B;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
