/* styles.css */
.centered-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.rotate {
    animation: spin 5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.mud-nav-item.hover-rounded-pill .mud-nav-link {
    transition: border-radius 0.25s ease, background-color 0.25s ease;
}

    .mud-nav-item.hover-rounded-pill .mud-nav-link:hover {
        border-radius: 50rem !important;
        background-color: var(--mud-palette-primary-hover);
    }