.pogobody {
    width: 100%;
    max-width: 500px;
}

@media (max-width: 400px) {
    .hide-sm {
        display: none !important;
    }
}


#blazor-error-ui {
    background: lightyellow;
    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;
    }

.bold {
    font-weight: bold;
}

.larger {
    font-size: larger;
}

.center {
    text-align: center;
}


.fixed-top-nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 99%;
    z-index: 1100;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #dee2e6;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.basic-flex {
    display: flex;
    align-items: center;
    justify-content:start;
    column-gap:8px;
}

.nav-btn {
    font-size: 1.1rem;
    color: #007bff;
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-align: left;
    width: fit-content;
}

.logout-btn {
    position: fixed;
    top: 0.5rem;
    right: 1rem;
    z-index: 1100;
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1rem;
    width: fit-content;
}

.form-control {
    font-size: 1rem;
    padding: 0.6rem 0.7rem;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: white;
    width: 99%;
    box-sizing: border-box;
    margin-bottom: 4px;
}

.button-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: middle;
}

.icon-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.icon {
    width: 20px;
    height: 20px;
}

.update-banner {
    background: #fffae6;
    color: #333;
    padding: 1em;
    border: 1px solid #f0c36d;
    border-radius: 6px;
    margin-bottom: 1em;
    text-align: center;
}

    .update-banner button {
        margin-left: 1em;
        padding: 0.5em 1em;
        background: #2563eb;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

.odd-row {
    background-color: #f3f4f6; /* Light gray, adjust as needed */
}


