@font-face {
    font-family: 'GalanoGrotesque';
    src: url('/fonts/GalanoGrotesque-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GalanoGrotesque';
    src: url('/fonts/GalanoGrotesque-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style:italic;
    font-display: swap;
}

@font-face {
    font-family: 'GalanoGrotesque';
    src: url('/fonts/GalanoGrotesque.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GalanoGrotesque';
    src: url('/fonts/GalanoGrotesque-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'GalanoGrotesque';
    src: url('/fonts/GalanoGrotesque-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GalanoGrotesque';
    src: url('/fonts/GalanoGrotesque-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* MudBlazor Global Font Değişkeni */
:root {
    --mud-typography-default-family: 'GalanoGrotesque', sans-serif !important;
}

/* Proje Genelinde Kesin Font Zorlaması */
*, *::before, *::after, html, input, button, select, textarea {
    font-family: 'GalanoGrotesque', sans-serif !important;
}

body {
    font-family: 'GalanoGrotesque', sans-serif !important;
}

/* Sadece Admin'e özel düzeltmeler */
.mud-typography {
    font-family: 'GalanoGrotesque', sans-serif !important;
}
/* Sadece Public'e özel düzeltmeler */
.public-wrapper .btn-primary {
    background-color: #1A237E;
    border-radius: 8px;
    font-weight: 600;
}

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    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;
    }

/* Ana içerik alanındaki scrollbar'ı tarayıcıdan bağımsız gizle */
/*.mud-main-content {
    -ms-overflow-style: none;*/ /* IE ve Edge için */
    /*scrollbar-width: none;*/ /* Firefox için */
/*}

    .mud-main-content::-webkit-scrollbar {
        display: none;*/ /* Chrome, Safari ve Opera için */
    /*}*/

