/* /Components/Layout/Drawer.razor.rz.scp.css */
.drawer-container[b-zl7q7okvyi] {
    height: 100%;
}

[b-zl7q7okvyi] .panel-open:not(.mobile) .menu-button {
    display: none;
}

[b-zl7q7okvyi] .navigation-drawer > .dxbl-drawer-panel {
    background-image: linear-gradient(180deg, var(--bs-primary, var(--DS-primary-90)) 0%, var(--bs-black, #000) 150%);
}

[b-zl7q7okvyi] .navigation-drawer > .dxbl-drawer-content {
    overflow: auto;
}

[b-zl7q7okvyi] .navigation-drawer > .dxbl-drawer-panel > .dxbl-drawer-header {
    border-bottom: none;
    padding: 2rem 1rem;
    background: none;
}

[b-zl7q7okvyi] .navigation-drawer > .dxbl-drawer-panel > .dxbl-drawer-header > .navigation-drawer-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

[b-zl7q7okvyi] .navigation-drawer > .dxbl-drawer-panel > .dxbl-drawer-body {
    --dxbl-drawer-panel-body-padding-x: 0;
    --dxbl-drawer-panel-body-padding-y: 1rem;
}

[b-zl7q7okvyi] .navigation-drawer > .dxbl-drawer-panel > .dxbl-drawer-footer {
    --dxbl-drawer-panel-footer-justify-content: center;
    border-top: none;
    padding-bottom: 1.5rem;
    width: 240px;
    background: none;
}

[b-zl7q7okvyi] .navigation-drawer > .dxbl-drawer-panel {
    display: flex;
}

[b-zl7q7okvyi] .navigation-drawer.mobile > .dxbl-drawer-panel {
    display: none;
}

[b-zl7q7okvyi] .navigation-drawer > .dxbl-drawer-content > .navigation-drawer-shading {
    display: none;
}

@media (max-width: 768px) {
    [b-zl7q7okvyi] .panel-open:not(.mobile) .menu-button {
        display: inline-flex;
    }

    [b-zl7q7okvyi] .navigation-drawer > .dxbl-drawer-panel {
        display: none;
    }

    [b-zl7q7okvyi] .navigation-drawer.mobile > .dxbl-drawer-panel {
        display: flex;
    }

    [b-zl7q7okvyi] .navigation-drawer > .dxbl-drawer-content > .navigation-drawer-shading {
        background-color: var(--dxbl-drawer-content-shading-bg);
        display: block;
        height: 100%;
        position: absolute;
        transition: ease var(--dxbl-drawer-animation-duration);
        transition-property: opacity, visibility;
        visibility: visible;
        width: 100%;
        z-index: 99;
        opacity: var(--dxbl-drawer-content-shading-opacity);
    }

    [b-zl7q7okvyi] .navigation-drawer.mobile.panel-closed .navigation-drawer-shading {
        opacity: 0;
        visibility: hidden;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-uu3rjswynf] {
    height: 100%;
    font-family: var(--bs-font-sans-serif, var(--DS-font-family-sans-serif));
    min-height: 0;
}

.logo[b-uu3rjswynf] {
    width: 13rem;
    height: auto;
}

/* Icon Mask definitions - leaving these if used elsewhere, but menu-button won't use them */
[b-uu3rjswynf] .icon-back {
    --icon-mask-image: var(--icon-back-mask-image);
}

[b-uu3rjswynf] .icon-close {
    --icon-mask-image: var(--icon-close-mask-image);
}

[b-uu3rjswynf] .icon-menu {
    --icon-mask-image: var(--icon-menu-mask-image);
}

[b-uu3rjswynf] .docs-icon {
    --icon-mask-image: var(--icon-docs-mask-image);
}

[b-uu3rjswynf] .demos-icon {
    --icon-mask-image: var(--icon-demos-mask-image);
}

/* Hover effects for other buttons */
[b-uu3rjswynf] .footer-button:hover .demos-icon,
[b-uu3rjswynf] .footer-button:hover .docs-icon,
[b-uu3rjswynf] .menu-button-nav:hover .icon {
    background-color: var(--dxbl-btn-hover-color);
}

/* Menu Button Styling for FontAwesome */
[b-uu3rjswynf] .menu-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* Target the FontAwesome icon inside the button */
[b-uu3rjswynf] .menu-button i,
[b-uu3rjswynf] .menu-button .fas {
    color: #ffffff !important;
    /* Force White */
    font-size: 1.5rem;
    /* Make it visible/large */
}

/* Hover effect */
[b-uu3rjswynf] .menu-button:hover i,
[b-uu3rjswynf] .menu-button:hover .fas {
    color: #e0e0e0 !important;
    /* Light Grey on Hover */
}

.panel-open .menu-button[b-uu3rjswynf] {
    display: inline-flex;
}

/* Top Bar Styling */
.top-bar[b-uu3rjswynf] {
    background: linear-gradient(135deg, var(--bs-primary, #0d6efd) 0%, rgba(13, 110, 253, 0.85) 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.nav-buttons-container[b-uu3rjswynf] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0.5rem;
    width: 100%;
}

.nav-buttons-container[b-uu3rjswynf]  .menubutton-float-end {
    margin-left: auto;
}

.user-section[b-uu3rjswynf] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-greeting[b-uu3rjswynf] {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

.main-body-content[b-uu3rjswynf] {
    overflow-y: auto;
    height: calc(100vh - 80px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-buttons-container[b-uu3rjswynf] {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }

    .user-greeting[b-uu3rjswynf] {
        display: none;
    }

    .user-section[b-uu3rjswynf] {
        gap: 0.5rem;
    }

    .main-body-content[b-uu3rjswynf] {
        height: calc(100vh - 60px);
    }
}

@media (max-width: 480px) {
    .nav-buttons-container[b-uu3rjswynf] {
        padding: 0.5rem 0.75rem;
    }

    .user-section[b-uu3rjswynf]  .dxbl-btn-text {
        display: none;
    }

    .user-section[b-uu3rjswynf]  .dxbl-btn {
        padding: 0.375rem 0.75rem;
    }
}

.footer-text[b-uu3rjswynf] {
    text-align: center;
    color: #ffffff;
    opacity: 0.9;
}

.footer-main[b-uu3rjswynf] {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-sub[b-uu3rjswynf] {
    margin-top: 2px;
    font-size: 0.7rem;
    font-weight: 300;
    opacity: 0.75;
}
.header[b-uu3rjswynf] {
    display: flex;
    justify-content: flex-start !important;
    padding-left: 0 !important;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
[b-cjsckv384e] .menu.display-mobile {
    margin-bottom: 2rem;
}

[b-cjsckv384e] .menu {
    --dxbl-menu-bottom-left-border-radius: 0;
    --dxbl-menu-bottom-right-border-radius: 0;
    --dxbl-menu-top-left-border-radius: 0;
    --dxbl-menu-top-right-border-radius: 0;
    
    background-color: inherit;
}

[b-cjsckv384e] .menu .dxbl-menu-item-list {
    gap: 0.9rem;
}

[b-cjsckv384e] .menu-item {
    color: var(--bs-white, #ff0000);
    font-size: 1.1rem;
}

[b-cjsckv384e] .icon {
    margin-left: 0.5rem;
}

[b-cjsckv384e] .home-icon {
    --icon-mask-image: var(--icon-home-mask-image);
}

[b-cjsckv384e] .weather-icon {
    --icon-mask-image: var(--icon-weather-mask-image);
}

[b-cjsckv384e] .counter-icon {
    --icon-mask-image: var(--icon-counter-mask-image);
}


@media (max-width: 768px) {
    #sidebar[b-cjsckv384e] {
        min-width: inherit;
        max-width: inherit;
        display: block;
    }

    .logo[b-cjsckv384e] {
        text-align: inherit;
    }
}
/* /Components/Pages/Index.razor.rz.scp.css */
[b-0pfi6jpor9] .welcome-gridlayout {
    margin: auto;
    width: auto;
    height: auto;
}

[b-0pfi6jpor9] .welcome-gridlayout .dxbl-gridlayout-root {
    align-content: center;
    justify-content: center;
}

[b-0pfi6jpor9] .title {
    text-align: center;
}

[b-0pfi6jpor9] .welcome-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

[b-0pfi6jpor9] .welcome-card {
    width: 26.25rem;
    height: 15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
    border-radius: 1rem;
    color: var(--bs-link-color, var(--DS-primary-90));
    gap: 1.5rem;
    text-decoration: none;
    position: relative;
}

[b-0pfi6jpor9] .welcome-card:hover {
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

[b-0pfi6jpor9] .welcome-card .welcome-card-img {
    width: 6.5rem;
    height: 6.5rem;
}

[b-0pfi6jpor9] .welcome-card .welcome-card-text {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0em;
    text-align: center;
    text-decoration: unset;
}

[b-0pfi6jpor9] .welcome-card .welcome-card-back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bs-body-color, var(--DS-color-content-neutral-default-rest));
    opacity: 0.05;
    border-radius: 1rem;
    z-index: -2;
}
/* /Components/Pages/Login.razor.rz.scp.css */
.btn-custom[b-kao3t8fi4z] {
    background-color: #FFC300 !important;
    border-color: #FFC300 !important;
    color: #fff !important;
    font-weight: bold;
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.50);
    transition: all .2s ease-in-out;
}

    /* Hover */
    .btn-custom:hover[b-kao3t8fi4z] {
        background-color: #e6b000 !important;
        border-color: #e6b000 !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    }

    /* Active (tıklandığında) */
    .btn-custom:active[b-kao3t8fi4z] {
        background-color: #cc9e00 !important;
        border-color: #cc9e00 !important;
        transform: scale(0.98);
        box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    }
