/*
	This CSS file matches the color scheme from MudBlazor to Bootstrap when utilized for authentication.
	The file remains available at all times for demonstration purposes,
	but it is exclusively employed in the 'App.razor' component when authentication is enabled.
*/

.btn-primary {
    text-transform: uppercase;
    --bs-btn-bg: var(--mud-palette-primary) !important;
    --bs-btn-hover-bg: var(--mud-palette-primary-darken) !important;
}

.nav-pills {
    --bs-nav-pills-link-active-bg: var(--mud-palette-primary) !important;
}

.nav {
    --bs-nav-link-color: var(--mud-palette-primary) !important;
    --bs-nav-link-hover-color: var(--mud-palette-primary-darken) !important;
}

html, body {
    min-height: 100vh;
    background-image: linear-gradient( 68.6deg, rgba(57,67,248,1) 38.1%, rgba(192,0,255,1) 93.1% );
    background-attachment: fixed;
    background-size: cover;
}

.centered-container {
    justify-content: center;
    display: flex;
    flex-direction:column;
    align-items: center; 
}

.gradient-button {
    background-image: linear-gradient(68.6deg, rgba(57,67,248,1) 38.1%, rgba(192,0,255,1) 93.1%);
    color: white;
    font-weight: bold;
    padding: 20px 40px; 
    font-size: 1.5rem;
    border-radius: 10px; 
    min-width: 200px; 
}

.gradient-button:hover {
    background-image: linear-gradient(68.6deg, rgba(57,67,248,1) 20%, rgba(192,0,255,1) 80%);
    opacity: 0.9;
}

.mud-table {
    background-color: transparent !important;
    color: white !important;
}

.mud-table td, .mud-table th, .mud-table tr {
    color: white !important;
}

.mud-table .mud-th {
    background-color: transparent !important;
}

svg{
   color: white;
}

.responsive-heading {
    font-size: 3rem; /* Default for large screens */
}

@media (max-width: 768px) {
    .responsive-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .responsive-heading {
        font-size: 1.5rem;
    }
}