/* /Pages/Index.razor.rz.scp.css */
/* Genel stil */
.toggle-switch[b-byb39usc0z] {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
    margin: 10px;
}

    /* Giriş stil */
    .toggle-switch .toggle-input[b-byb39usc0z] {
        display: none;
    }

    /* Anahtarın stilinin etrafındaki etiketin stil */
    .toggle-switch .toggle-label[b-byb39usc0z] {
        position: absolute;
        top: 0;
        left: 0;
        width: 40px;
        height: 24px;
        background-color: #EAEAEA;
        border-radius: 34px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        /* Anahtarın yuvarlak kısmının stil */
        .toggle-switch .toggle-label[b-byb39usc0z]::before {
            content: "";
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            top: 2px;
            left: 2px;
            background-color: #fff;
            box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }

    /* Anahtarın etkin hale gelmesindeki stil değişiklikleri */
    .toggle-switch .toggle-input:checked + .toggle-label[b-byb39usc0z] {
        background-color: #4CAF50;
    }

        .toggle-switch .toggle-input:checked + .toggle-label[b-byb39usc0z]::before {
            transform: translateX(16px);
        }

    /* Light tema */
    .toggle-switch.light .toggle-label[b-byb39usc0z] {
        background-color: #BEBEBE;
    }

    .toggle-switch.light .toggle-input:checked + .toggle-label[b-byb39usc0z] {
        background-color: #9B9B9B;
    }

        .toggle-switch.light .toggle-input:checked + .toggle-label[b-byb39usc0z]::before {
            transform: translateX(6px);
        }

    /* Dark tema */
    .toggle-switch.dark .toggle-label[b-byb39usc0z] {
        background-color: #4B4B4B;
    }

    .toggle-switch.dark .toggle-input:checked + .toggle-label[b-byb39usc0z] {
        background-color: #717171;
    }

        .toggle-switch.dark .toggle-input:checked + .toggle-label[b-byb39usc0z]::before {
            transform: translateX(16px);
        }
/* /Shared/Components/MyIcon.razor.rz.scp.css */
.my-icon[b-q6b55vuz3p] {
    display: flex;
    width: 35px;
    height: 35px;
    padding: 2px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: #A098FF;
    border-radius:10px;
}



.small-size[b-q6b55vuz3p]{
    width:10px;
    height:10px;
}

.normal-size[b-q6b55vuz3p] {
    width: 20px;
    height: 20px;
}

.big-size[b-q6b55vuz3p] {
    width: 24px;
    height: 24px;
}
/* /Shared/Components/MyLoader.razor.rz.scp.css */
.loader[b-8cmokg3mh3] {
    --dim: 3rem;
    width: var(--dim);
    height: var(--dim);
    position: relative;
    animation: spin988-b-8cmokg3mh3 2s linear infinite;
}

    .loader .circle[b-8cmokg3mh3] {
        --gradient-blue: white;
        --dim: 1.2rem;
        width: var(--dim);
        height: var(--dim);
        background: var(--gradient-blue);
        border-radius: 50%;
        position: absolute;
    }

    .loader .circle-white[b-8cmokg3mh3] {
        --dim: 1.2rem;
        width: var(--dim);
        height: var(--dim);
        background: var(--white);
        border-radius: 50%;
        position: absolute;
    }

    .loader .circle:nth-child(1)[b-8cmokg3mh3], .circle-white:nth-child(1)[b-8cmokg3mh3] {
        top: 0;
        left: 0;
    }

    .loader .circle:nth-child(2)[b-8cmokg3mh3], .circle-white:nth-child(2)[b-8cmokg3mh3] {
        top: 0;
        right: 0;
    }

    .loader .circle:nth-child(3)[b-8cmokg3mh3], .circle-white:nth-child(3)[b-8cmokg3mh3] {
        bottom: 0;
        left: 0;
    }

    .loader .circle:nth-child(4)[b-8cmokg3mh3], .circle-white:nth-child(4)[b-8cmokg3mh3] {
        bottom: 0;
        right: 0;
    }

@keyframes spin988-b-8cmokg3mh3 {
    0% {
        transform: scale(1) rotate(0);
    }

    20%, 25% {
        transform: scale(1.3) rotate(90deg);
    }

    45%, 50% {
        transform: scale(1) rotate(180deg);
    }

    70%, 75% {
        transform: scale(1.3) rotate(270deg);
    }

    95%, 100% {
        transform: scale(1) rotate(360deg);
    }
}
/* /Shared/Components/MyNotification.razor.rz.scp.css */
.my-notification[b-3buvhr7jk5] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    height: 60px;
    min-width: 350px;
    border-radius: 52px;
    background: #FFF;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}


.my-notification-icon[b-3buvhr7jk5] {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
}

.my-notification-text[b-3buvhr7jk5] {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    padding: 0px 15px;
    line-height: 24px; /* 150% */
}
/* /Shared/Components/MySwitch.razor.rz.scp.css */
/* Genel stil */
.toggle-switch[b-bjcwb9tbqe] {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
    margin: 10px;
}

    /* Giriş stil */
    .toggle-switch .toggle-input[b-bjcwb9tbqe] {
        display: none;
    }

    /* Anahtarın stilinin etrafındaki etiketin stil */
    .toggle-switch .toggle-label[b-bjcwb9tbqe] {
        position: absolute;
        top: 0;
        left: 0;
        width: 40px;
        height: 24px;
        background-color: #EAEAEA;
        border-radius: 34px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        /* Anahtarın yuvarlak kısmının stil */
        .toggle-switch .toggle-label[b-bjcwb9tbqe]::before {
            content: "";
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            top: 2px;
            left: 2px;
            background-color: #fff;
            box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }

    /* Anahtarın etkin hale gelmesindeki stil değişiklikleri */
    .toggle-switch .toggle-input:checked + .toggle-label[b-bjcwb9tbqe] {
        background-color: #4CAF50;
    }

        .toggle-switch .toggle-input:checked + .toggle-label[b-bjcwb9tbqe]::before {
            transform: translateX(16px);
        }

    /* Light tema */
    .toggle-switch.light .toggle-label[b-bjcwb9tbqe] {
        background-color: #BEBEBE;
    }

    .toggle-switch.light .toggle-input:checked + .toggle-label[b-bjcwb9tbqe] {
        background-color: #9B9B9B;
    }

        .toggle-switch.light .toggle-input:checked + .toggle-label[b-bjcwb9tbqe]::before {
            transform: translateX(6px);
        }

    /* Dark tema */
    .toggle-switch.dark .toggle-label[b-bjcwb9tbqe] {
        background-color: #4B4B4B;
    }

    .toggle-switch.dark .toggle-input:checked + .toggle-label[b-bjcwb9tbqe] {
        background-color: #717171;
    }

        .toggle-switch.dark .toggle-input:checked + .toggle-label[b-bjcwb9tbqe]::before {
            transform: translateX(16px);
        }
/* /Shared/Index/MyInputFileField.razor.rz.scp.css */
.file-span[b-pejdewzqzo] {
    color: #A098FF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    display: inline-block; /* Set display to inline-block */
    line-height: normal;
    /*text-underline-offset:1;*/
}

.dashed-underline[b-pejdewzqzo] {
    text-decoration: none; /* Remove text-decoration from the span */
    background-image: repeating-linear-gradient(55deg, transparent, transparent 4px, #A098FF 4px, #A098FF 10px);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    width: fit-content; /* Set width based on content width */
}
.my-row[b-pejdewzqzo] {
    display: flex;
    justify-content: center;
    align-items: center;    
    margin:0px;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-k1596i9fx0] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-k1596i9fx0] {
    flex: 1;
}

.sidebar[b-k1596i9fx0] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-k1596i9fx0] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-k1596i9fx0]  a, .top-row[b-k1596i9fx0]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-k1596i9fx0]  a:hover, .top-row[b-k1596i9fx0]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-k1596i9fx0]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-k1596i9fx0] {
        display: none;
    }

    .top-row.auth[b-k1596i9fx0] {
        justify-content: space-between;
    }

    .top-row[b-k1596i9fx0]  a, .top-row[b-k1596i9fx0]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-k1596i9fx0] {
        flex-direction: row;
    }

    .sidebar[b-k1596i9fx0] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-k1596i9fx0] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-k1596i9fx0]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-k1596i9fx0], article[b-k1596i9fx0] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
