
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */

body {
    margin-bottom: 60px;
    font-family: "Segoe UI", sans-serif;
    background: #f4f7fc;
    overflow-x: hidden;
}



}


/* FOCUS */

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* FLOATING */

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* APP */

.app-container {
    display: flex;
    min-height: 100vh;
}

/* SIDEBAR */

.sidebar {
    width: 200px;
    min-height: 100vh;
    background: #e3e2e2;
    color: #000;
    transition: all 0.3s ease;
    overflow: hidden;
}

.sidebar.collapsed {
    width: 35px;
}

/* LOGO */

.logo-area {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    background: #e3e2e2;
}

    .logo-area h3 {
        font-size: 20px;
        margin: 0;
        color: #222;
    }

    .logo-area small {
        color: #666;
    }

/* TOGGLE */

.toggle-btn {
    border: none;
    background: #4f46e5;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

    .toggle-btn:hover {
        background: #4338ca;
    }

/* MENU */

.menu {
    padding: 10px 1px;
    list-style: none;
}

    .menu li {
        /*margin-bottom: 6px;*/
        width: 100%;
    }

        .menu li a {
            height: 32px;
            display: flex;
            align-items: center;
            padding: 0 5px;
            text-decoration: none;
            color: #222;
            border-radius: 10px;
            transition: all 0.2s ease;
            position: relative;
            gap: 10px;
            font-family:Arial;
        }

            .menu li a:hover {
                background: #4f46e5;
                color: white;
            }

            .menu li a i {
                font-size: 18px;
                min-width: 20px;
            }

            .menu li a span {
                flex: 1;
                font-size: 13px;
            }

/* RIGHT ICON */

.right-icon {
    font-size: 13px !important;
}

/* SUBMENU */

.submenu {
    display: none;
    list-style: none;
/*    padding-left: 15px;*/
    margin-top: 0px;
}

    .submenu li {
        margin-bottom: 4px;
        padding: 0 20px;
        height: 20px;
    }

        .submenu li a {
            height: 35px;
            font-size: 12px;
            color: #444;
            border-radius: 8px;
        }

            .submenu li a:hover {
                background: #6366f1;
                color: white;
            }

.menu-dropdown.active .submenu {
    display: block;
    width:220px;
}

/* MAIN */

.main-content {
    flex: 1;
    min-width: 0;
}

/* TOPBAR */

.topbar {
    height: 60px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* SEARCH */

.search-box input {
    width: 100%;
    max-width: 350px;
    height: 42px;
    border: none;
    background: #f1f5f9;
    border-radius: 10px;
    padding: 0 15px;
    outline: none;
}

/* USER */

.user-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #4f46e5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* CONTENT */

.page-content {
    padding: 0px;
}

/* UST PANO */

.ustpano {
    display: flex;
    width: 100%;
    height: 35px;
}

@media (max-width: 991px) {
    .ustpano {
        display: none;
    }
}

/* SMALL BOX */

.small-box {
    border-radius: 12px;
    box-shadow: 0 0 1px rgba(0,0,0,0.1), 0 2px 6px rgba(0,0,0,0.08);
    display: block;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: 0.2s;
}

    .small-box:hover {
        transform: translateY(-3px);
    }

    .small-box > .inner {
        padding: 15px;
    }

    .small-box > .small-box-footer {
        background-color: rgba(0,0,0,0.08);
        color: rgba(255,255,255,0.9);
        display: block;
        padding: 8px 0;
        position: relative;
        text-align: center;
        text-decoration: none;
        z-index: 10;
    }

        .small-box > .small-box-footer:hover {
            background-color: rgba(0,0,0,0.15);
            color: #fff;
        }

    .small-box h3 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 10px;
        white-space: nowrap;
    }

    .small-box p {
        font-size: 1rem;
    }

        .small-box p > small {
            color: #f8f9fa;
            display: block;
            font-size: .85rem;
            margin-top: 5px;
        }

    .small-box .icon {
        color: rgba(0,0,0,0.12);
    }

        .small-box .icon > i,
        .small-box .icon > svg {
            font-size: 70px;
            position: absolute;
            right: 15px;
            top: 15px;
            transition: transform 0.3s linear;
        }

    .small-box:hover .icon > i,
    .small-box:hover .icon > svg {
        transform: scale(1.08);
    }

/* RESPONSIVE */

@media (max-width: 767px) {

    .sidebar {
        width: 70px;
    }

    .logo-area h3,
    .logo-area small,
    .menu li a span,
    .right-icon {
        display: none;
    }

    .menu li a {
        justify-content: center;
    }

    .topbar {
        flex-direction: column;
        height: auto;
        padding: 15px;
        gap: 10px;
    }

    .search-box {
        width: 100%;
    }

    .small-box {
        text-align: center;
    }

        .small-box .icon {
            display: none;
        }

        .small-box p {
            font-size: 12px;
        }

    .page-content {
        padding: 15px;
    }
}

/* COLORS */


.border {
    border: 1px solid #dee2e6 !important;
}


.bg-hbys-primary {
    background-color: #007bff !important;
}

a.bg-hbys-primary:hover, a.bg-hbys-primary:focus,
button.bg-hbys-primary:hover,
button.bg-hbys-primary:focus {
    background-color: #0062cc !important;
}

.bg-hbys-secondary {
    background-color: #a1b8cd !important;
}

a.bg-hbys-secondary:hover, a.bg-hbys-secondary:focus,
button.bg-hbys-secondary:hover,
button.bg-hbys-secondary:focus {
    background-color: #545b62 !important;
}


.bg-hbys-fuchsia {
    background-color: #a1b8cd !important;
}

a.fuchsia:hover, a.bg-hbys-fuchsia:focus,
button.fuchsia:hover,
button.fuchsia:focus {
    background-color: #545b62 !important;
}



.bg-hbys-lightblue {
    background-color: #a1b8cd !important;
}

a.lightblue:hover, a.bg-hbys-lightblue:focus,
button.lightblue:hover,
button.lightblue:focus {
    background-color: #545b62 !important;
}

.bg-hbys-gradient-olive {
    background-color: #a1b8cd !important;
}

a.gradient-olive:hover, a.bg-hbys-gradient-olive:focus,
button.gradient-olive:hover,
button.gradient-olive:focus {
    background-color: #545b62 !important;
}



.bg-hbys-lime {
    background-color: #d9bf3e !important;
}

a.lime:hover, a.bg-hbys-lime:focus,
button.lime:hover,
button.lime:focus {
    background-color: #f7c7bc !important;
}



.bg-hbys-success {
    background-color: #28a745 !important;
}

a.bg-hbys-success:hover, a.bg-hbys-success:focus,
button.bg-hbys-success:hover,
button.bg-hbys-success:focus {
    background-color: #1e7e34 !important;
}

.bg-hbys-info {
    background-color: #f1d4db !important;
}

a.bg-hbys-info:hover, a.bg-hbys-info:focus,
button.bg-hbys-info:hover,
button.bg-hbys-info:focus {
    background-color: #117a8b !important;
}

.bg-hbys-warning {
    background-color: #ffc107 !important;
}

a.bg-hbys-warning:hover, a.bg-hbys-warning:focus,
button.bg-hbys-warning:hover,
button.bg-hbys-warning:focus {
    background-color: #d39e00 !important;
}

.bg-hbys-danger {
    background-color: #dc3545 !important;
}

a.bg-hbys-danger:hover, a.bg-hbys-danger:focus,
button.bg-hbys-danger:hover,
button.bg-hbys-danger:focus {
    background-color: #bd2130 !important;
}

.bg-hbys-light {
    background-color: #f8f9fa !important;
}

a.bg-hbys-light:hover, a.bg-hbys-light:focus,
button.bg-hbys-light:hover,
button.bg-hbys-light:focus {
    background-color: #dae0e5 !important;
}

.bg-hbys-dark {
    background-color: #343a40 !important;
}

a.bg-hbys-dark:hover, a.bg-hbys-dark:focus,
button.bg-hbys-dark:hover,
button.bg-hbys-dark:focus {
    background-color: #1d2124 !important;
}

.bg-hbys-white {
    background-color: #fff !important;
}

.bg-hbys-transparent {
    background-color: transparent !important;
}




.card {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fffafa;
    background-clip: border-box;
    border: 0 solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

    .card > hr {
        margin-right: 0;
        margin-left: 0;
    }

    .card > .list-group {
        border-top: inherit;
        border-bottom: inherit;
    }

        .card > .list-group:first-child {
            border-top-width: 0;
            border-top-left-radius: calc(0.25rem - 0);
            border-top-right-radius: calc(0.25rem - 0);
        }

        .card > .list-group:last-child {
            border-bottom-width: 0;
            border-bottom-right-radius: calc(0.25rem - 0);
            border-bottom-left-radius: calc(0.25rem - 0);
        }

        .card > .card-header + .list-group,
        .card > .list-group + .card-footer {
            border-top: 0;
        }

.card-body {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 0 solid rgba(0, 0, 0, 0.125);
}

    .card-header:first-child {
        border-radius: calc(0.25rem - 0) calc(0.25rem - 0) 0 0;
    }

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 0 solid rgba(0, 0, 0, 0.125);
}

    .card-footer:last-child {
        border-radius: 0 0 calc(0.25rem - 0) calc(0.25rem - 0);
    }

.card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    border-radius: calc(0.25rem - 0);
}

.card-img,
.card-img-top,
.card-img-bottom {
    /*-webkit-flex-shrink: 0;
  -ms-flex-negative: 0;*/
    flex-shrink: 0;
    width: 100%;
}

.card-img,
.card-img-top {
    border-top-left-radius: calc(0.25rem - 0);
    border-top-right-radius: calc(0.25rem - 0);
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: calc(0.25rem - 0);
    border-bottom-left-radius: calc(0.25rem - 0);
}

.card-deck .card {
    margin-bottom: 7.5px;
}

@media (min-width: 576px) {
    .card-deck {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -7.5px;
        margin-left: -7.5px;
    }

        .card-deck .card {
            -webkit-flex: 1 0 0%;
            -ms-flex: 1 0 0%;
            flex: 1 0 0%;
            margin-right: 7.5px;
            margin-bottom: 0;
            margin-left: 7.5px;
        }
}

.card-group > .card {
    margin-bottom: 7.5px;
}

@media (min-width: 576px) {
    .card-group {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

        .card-group > .card {
            -webkit-flex: 1 0 0%;
            -ms-flex: 1 0 0%;
            flex: 1 0 0%;
            margin-bottom: 0;
        }

            .card-group > .card + .card {
                margin-left: 0;
                border-left: 0;
            }

            .card-group > .card:not(:last-child) {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

                .card-group > .card:not(:last-child) .card-img-top,
                .card-group > .card:not(:last-child) .card-header {
                    border-top-right-radius: 0;
                }

                .card-group > .card:not(:last-child) .card-img-bottom,
                .card-group > .card:not(:last-child) .card-footer {
                    border-bottom-right-radius: 0;
                }

            .card-group > .card:not(:first-child) {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

                .card-group > .card:not(:first-child) .card-img-top,
                .card-group > .card:not(:first-child) .card-header {
                    border-top-left-radius: 0;
                }

                .card-group > .card:not(:first-child) .card-img-bottom,
                .card-group > .card:not(:first-child) .card-footer {
                    border-bottom-left-radius: 0;
                }
}

.card-columns .card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }

        .card-columns .card {
            display: inline-block;
            width: 100%;
        }
}



.alert-dark {
    color: #fff;
    background-color: #9bcdff;
    border-color: #292d32;
}

.alert-default-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

    .alert-default-dark hr {
        border-top-color: #b9bbbe;
    }

    .alert-default-dark .alert-link {
        color: #040505;
    }

.tab {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab1 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.tabcontent1 {
    display: none;
    border: 1px solid #ccc;
    border-top: none;
}

.AnaCerceveGrid {
    max-height: 310px;
    height: 310px;
    width: 100%;
    overflow-y: scroll;
}


.Uygulamalar {
    width: 100%;
}


/* Style the tab */
.tab2 {
    background-color: #f1f1f1;
}
    /* Style the buttons inside the tab */
    .tab2 button {
        background-color: red;
        float: left;
        cursor: pointer;
        padding: 10px 16px;
        transition: 0.3s;
        font-size: 14px;
    }

        /* Change background color of buttons on hover */
        .tab2 button:hover {
            background-color: #ddd;
        }

        /* Create an active/current tablink class */
        .tab2 button.active {
            background-color: #ccc;
        }

.tabcontent2 {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

