@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
    padding: 0px;
    margin: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html, body {
    height: 100%;
    min-height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

body {
    overflow-y: hidden;
    width: 100vw;
}

    body::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        background-color: #f5f5f5;
    }

    body::-webkit-scrollbar {
        width: 4px;
        background-color: #f5f5f5;
    }

    body::-webkit-scrollbar-thumb {
        background-color: #0ae;
        background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, rgba(255, 255, 255, 0.2)), color-stop(0.5, transparent), to(transparent));
    }

input {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

button {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

i {
    cursor: pointer;
}

p {
    margin-bottom: 0rem;
}

header {
    height: 65px;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #0000001a;
    z-index: 99999;
}

    header .headerLeftSide {
        margin-left: 24px;
    }

        header .headerLeftSide .photoAvatar {
            width: 32px;
            height: 32px;
            background: #929292;
            border-radius: 50%;
            margin-right: 36px;
        }

        header .headerLeftSide .headerInput {
            position: relative;
        }

            header .headerLeftSide .headerInput input {
                margin-left: 12px;
                border: none;
                outline: none;
                border: 1px solid #fff;
                padding: 9.5px 12px 9.5px 54px;
                width: 500px;
                font-weight: 400;
                font-size: 16px;
                border-radius: 24px;
                color: #616161;
            }

                header .headerLeftSide .headerInput input:hover {
                    border: 1px solid #e7e7e7;
                }

            header .headerLeftSide .headerInput .dataList {
                display: none;
                position: absolute;
                top: 45px;
                left: 13px;
                background: #ffffff 0% 0% no-repeat padding-box;
                background: #ffffff 0% 0% no-repeat padding-box;
                -webkit-box-shadow: 0px 0px 5px #0000001a;
                box-shadow: 0px 0px 5px #0000001a;
                z-index: 2;
                width: calc(100% - 13px);
                background: #fff;
                list-style: none;
                border-top: 1px solid #f1f1f1;
                border-bottom-left-radius: 24px;
                border-bottom-right-radius: 24px;
            }

                header .headerLeftSide .headerInput .dataList li {
                    padding: 12px;
                    cursor: pointer;
                }

                    header .headerLeftSide .headerInput .dataList li:hover {
                        background: #fcfcfc;
                    }

                    header .headerLeftSide .headerInput .dataList li:last-child {
                        border-bottom-left-radius: 24px;
                        border-bottom-right-radius: 24px;
                    }

                header .headerLeftSide .headerInput .dataList .seeAllResults {
                    background: #f3f3f3;
                }

            header .headerLeftSide .headerInput input:focus {
                background: #ffffff 0% 0% no-repeat padding-box;
                background: #ffffff 0% 0% no-repeat padding-box;
                -webkit-box-shadow: 0px 0px 5px #0000001a;
                box-shadow: 0px 0px 5px #0000001a;
            }

            header .headerLeftSide .headerInput svg {
                position: absolute;
                top: 11px;
                left: 32px;
            }

    header .headerRightSide {
        margin-right: 24px;
        position: relative;
    }

        header .headerRightSide .defaultNotificationNumber {
            position: absolute;
            top: -5px;
            right: 23px;
            font-size: 12px;
            background: red;
            border-radius: 50%;
            padding: 0 5px;
            color: #fff;
            cursor: pointer;
        }

        header .headerRightSide .defaultNotifications {
            position: absolute;
            top: 45px;
            right: 40px;
            background: #fff;
            -webkit-box-shadow: 0px 0px 5px #0000001a;
            box-shadow: 0px 0px 5px #0000001a;
            height: 240px;
            overflow-y: scroll;
            display: none;
        }

            header .headerRightSide .defaultNotifications li {
                font-size: 14px;
                list-style: none;
                padding: 8px 16px;
                width: 320px;
            }

                header .headerRightSide .defaultNotifications li p {
                    width: 90%;
                }

                header .headerRightSide .defaultNotifications li i {
                    padding: 4px;
                    color: #6161ff;
                }

                header .headerRightSide .defaultNotifications li .lastCheck {
                    background: #6161ff;
                    color: #fff;
                }

            header .headerRightSide .defaultNotifications .defaultCheckNotification {
                background: #111197;
                color: #fff;
            }

            header .headerRightSide .defaultNotifications::-webkit-scrollbar {
                width: 3px;
            }

            header .headerRightSide .defaultNotifications::-webkit-scrollbar-track {
                background-color: #c8c7c7;
                border-radius: 20px;
            }

            header .headerRightSide .defaultNotifications::-webkit-scrollbar-thumb {
                border-radius: 20px;
                background: #2c2c2c;
            }

        header .headerRightSide .rightSideIcons {
            cursor: pointer;
        }

            header .headerRightSide .rightSideIcons:first-child {
                margin-right: 25px;
            }

.rows {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 56px auto 56px;
    grid-template-columns: 56px auto 56px;
    height: 100%;
}

    .rows .sideCol:first-child {
        border-right: 1px solid #0000001a;
    }

    .rows .sideCol:last-child {
        border-left: 1px solid #0000001a;
    }

        .rows .sideCol:last-child svg {
            cursor: pointer;
            position: absolute;
            /*top: 80px;*/
            color: #616161;
        }

    .rows .centerCol {
        margin: 12px;
        position: relative;
        height: 100vh;
    }



        .rows .centerCol .tabMenu {
            padding: 0px 14px;
            margin-bottom: 16px;
        }

            .rows .centerCol .tabMenu a {
                height: 48px;
                line-height: 48px;
                border-bottom: 2px solid #fff;
                text-decoration: none;
                color: #616161;
                font-size: 14px;
                font-weight: 500;
            }

            .rows .centerCol .tabMenu .active {
                color: #1976d2;
                border-bottom: 2px solid #1976d2;
            }

            .rows .centerCol .tabMenu a:hover {
                background-color: #e3f2fd;
                color: #1976d2;
                border-bottom: 2px solid #1976d2;
            }

            .rows .centerCol .tabMenu a:last-child:hover {
                background: #e0e0e0;
                color: #616161;
                border: 2px solid #e0e0e0;
            }

            .rows .centerCol .tabMenu .disabled {
                background: #e0e0e0;
                cursor: default;
                border: 2px solid #e0e0e0;
            }

        .rows .centerCol .tableContainer {
            height: 55%;
            overflow: auto;
            overflow-y: scroll;
        }

            .rows .centerCol .tableContainer table thead {
                background: #f3f3f3;
            }

                .rows .centerCol .tableContainer table thead tr {
                    text-align: center;
                }

                .rows .centerCol .tableContainer table thead th {
                    font-size: 16px;
                    color: #283142;
                }

            .rows .centerCol .tableContainer table tbody {
                border-top: 1px solid #dee2e6;
            }

                .rows .centerCol .tableContainer table tbody tr .tableUserName {
                    position: relative;
                    padding: 8px;
                    width: 120px;
                }

                    .rows .centerCol .tableContainer table tbody tr .tableUserName .userTabloInput {
                        border: 1px solid #f9f9f9;
                    }

                    .rows .centerCol .tableContainer table tbody tr .tableUserName .userTableList {
                        overflow: auto;
                        overflow-y: scroll;
                        overflow-x: hidden;
                        position: absolute;
                        scroll-behavior: smooth;
                        z-index: 44;
                        background: #fff;
                        top: 40px;
                        left: 8px;
                        list-style: none;
                        border: 1px solid #aaa;
                        width: 219px;
                        border-radius: 4px;
                        border: 1px solid #f3f3f3;
                        display: none;
                        height: 240px;
                        overflow: auto;
                    }

                        .rows .centerCol .tableContainer table tbody tr .tableUserName .userTableList li {
                            padding: 4px 0;
                            cursor: pointer;
                            text-align: left;
                        }

                            .rows .centerCol .tableContainer table tbody tr .tableUserName .userTableList li label {
                                width: 80%;
                                padding: 4px 0;
                                cursor: pointer;
                            }

                            .rows .centerCol .tableContainer table tbody tr .tableUserName .userTableList li i {
                                margin-left: 12px;
                                margin-right: 12px;
                            }

                            .rows .centerCol .tableContainer table tbody tr .tableUserName .userTableList li:hover {
                                background: #fafafa;
                            }

                        .rows .centerCol .tableContainer table tbody tr .tableUserName .userTableList::-webkit-scrollbar {
                            width: 3px;
                        }

                        .rows .centerCol .tableContainer table tbody tr .tableUserName .userTableList::-webkit-scrollbar-track {
                            background-color: #ffffff;
                            border-radius: 20px;
                        }

                        .rows .centerCol .tableContainer table tbody tr .tableUserName .userTableList::-webkit-scrollbar-thumb {
                            border-radius: 20px;
                            background: #616161;
                        }

                    .rows .centerCol .tableContainer table tbody tr .tableUserName input {
                        height: 32px;
                        cursor: pointer;
                        width: 240px;
                        color: #616161;
                        outline: none;
                        padding-left: 42px;
                        border-radius: 4px;
                        border: 1px solid white;
                        -webkit-transition: all 0.3s;
                        transition: all 0.3s;
                    }

                        .rows .centerCol .tableContainer table tbody tr .tableUserName input:hover {
                            border: 1px solid #e6e6e6;
                        }

                    .rows .centerCol .tableContainer table tbody tr .tableUserName .userAvatarTable {
                        position: absolute;
                        left: 20px;
                        bottom: 16px;
                        font-size: 16px;
                        color: #616161;
                    }

                    .rows .centerCol .tableContainer table tbody tr .tableUserName .closeTableInput {
                        position: absolute;
                        right: -95px;
                        bottom: 16px;
                        color: red;
                        display: none;
                    }

                .rows .centerCol .tableContainer table tbody tr td {
                    font-size: 14px;
                    color: #616161;
                    border-top: none;
                    text-align: center;
                }

                    .rows .centerCol .tableContainer table tbody tr td .tableIcons {
                        position: relative;
                    }

                        .rows .centerCol .tableContainer table tbody tr td .tableIcons .defaultEditMenu {
                            position: absolute;
                            top: 20px;
                            display: none;
                            right: 30px;
                            color: #000;
                            border: 1px solid #ebebeb;
                            background: #fff;
                            border-radius: 4px;
                            padding: 0px 0px;
                            z-index: 9999;
                        }

                            .rows .centerCol .tableContainer table tbody tr td .tableIcons .defaultEditMenu li {
                                list-style: none;
                                padding: 6px 12px;
                                cursor: pointer;
                            }

                                .rows .centerCol .tableContainer table tbody tr td .tableIcons .defaultEditMenu li a {
                                    padding: 6px 12px;
                                    text-decoration: none;
                                    color: #0366d6 !important;
                                }

                                    .rows .centerCol .tableContainer table tbody tr td .tableIcons .defaultEditMenu li a:hover {
                                        text-decoration: none;
                                        color: #fff !important;
                                    }

                                .rows .centerCol .tableContainer table tbody tr td .tableIcons .defaultEditMenu li:hover {
                                    background: #1976d2;
                                    color: #fff;
                                }

                                .rows .centerCol .tableContainer table tbody tr td .tableIcons .defaultEditMenu li:last-child:hover,
                                .rows .centerCol .tableContainer table tbody tr td .tableIcons .defaultEditMenu li:first-child:hover {
                                    background: #1976d2;
                                    color: #fff;
                                    border-radius: 4px;
                                }

                                .rows .centerCol .tableContainer table tbody tr td .tableIcons .defaultEditMenu li:first-child:hover {
                                    border-bottom-left-radius: 0px;
                                    border-bottom-right-radius: 0px;
                                }

                                .rows .centerCol .tableContainer table tbody tr td .tableIcons .defaultEditMenu li:last-child:hover {
                                    border-top-left-radius: 0px;
                                    border-top-right-radius: 0px;
                                }

                        .rows .centerCol .tableContainer table tbody tr td .tableIcons svg {
                            padding: 0px;
                            cursor: pointer;
                            color: #616161;
                            margin-right: 12px;
                        }

                            .rows .centerCol .tableContainer table tbody tr td .tableIcons svg:last-child {
                                margin-right: 0px;
                            }

                .rows .centerCol .tableContainer table tbody tr label {
                    margin-bottom: 0rem;
                }

                    .rows .centerCol .tableContainer table tbody tr label input {
                        margin-right: 12px;
                    }

                    .rows .centerCol .tableContainer table tbody tr label p {
                        margin-left: 20px;
                    }

            .rows .centerCol .tableContainer::-webkit-scrollbar {
                width: 3px;
            }

            .rows .centerCol .tableContainer::-webkit-scrollbar-track {
                background-color: #ffffff;
                border-radius: 20px;
            }

            .rows .centerCol .tableContainer::-webkit-scrollbar-thumb {
                border-radius: 20px;
                background: #616161;
            }

        .rows .centerCol .colsCenter {
            margin-top: 65px;
        }

            .rows .centerCol .colsCenter .colsToCol {
                background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
                background: #ffffff 0% 0% no-repeat padding-box;
                -webkit-box-shadow: 0px 0px 5px #0000001a;
                box-shadow: 0px 0px 5px #0000001a;
                width: 100%;
            }

                .rows .centerCol .colsCenter .colsToCol:first-child {
                    height: 80px;
                    padding-left: 16px;
                }

                    .rows .centerCol .colsCenter .colsToCol:first-child h2 {
                        font-size: 20px;
                        color: #1976d2;
                    }

                    .rows .centerCol .colsCenter .colsToCol:first-child a {
                        font-size: 12px;
                        color: #bdbdbd;
                    }

                    .rows .centerCol .colsCenter .colsToCol:first-child p span {
                        color: #1976d2;
                    }

                .rows .centerCol .colsCenter .colsToCol:last-child {
                    padding: 16px;
                    margin-top: 12px;
                    height: 100vh;
                    overflow-y: scroll;
                }

                    .rows .centerCol .colsCenter .colsToCol:last-child::-webkit-scrollbar-track {
                        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
                        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
                        background-color: #f5f5f5;
                    }

                    .rows .centerCol .colsCenter .colsToCol:last-child::-webkit-scrollbar {
                        width: 4px;
                        background-color: #f5f5f5;
                    }

                    .rows .centerCol .colsCenter .colsToCol:last-child::-webkit-scrollbar-thumb {
                        background-color: #0ae;
                        background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, rgba(255, 255, 255, 0.2)), color-stop(0.5, transparent), to(transparent));
                    }

                    .rows .centerCol .colsCenter .colsToCol:last-child .defaultButtonsContainer {
                        padding: 0 16px;
                    }

                    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerOne {
                        height: 60px;
                    }

                        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerOne a {
                            outline: none;
                        }

                            .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerOne a svg {
                                margin-right: 10px;
                            }

                                .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerOne a svg .b {
                                    fill: white;
                                }

                        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerOne .addNew {
                            font-size: 14px;
                            color: #fff;
                            text-decoration: none;
                            background: #1976d2;
                            padding: 10px 25px;
                            border-radius: 24px;
                            border: none;
                        }

.colsToCol .defaultPageNameLinkContainer a {
    color: #bdbdbd !important;
}

    .colsToCol .defaultPageNameLinkContainer a span {
        color: #1976d2 !important;
    }

.rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerOne .addNew:first-child:hover {
    background: #0d47a1;
}

.rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerOne .addNewDisable {
    margin-left: 12px;
    background: #e0e0e0;
    color: #9e9e9e;
}

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerOne .addNewDisable svg {
        margin-right: 10px;
    }

        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerOne .addNewDisable svg .b {
            fill: #a0a0a0;
        }

.rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerTwo {
    height: 60px;
}

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerTwo .headerInput {
        position: relative;
    }

        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerTwo .headerInput input {
            margin-left: 12px;
            border: 1px solid #585858;
            outline: none;
            padding: 9.5px 12px 9.5px 54px;
            width: 400px;
            font-weight: 400;
            font-size: 16px;
            border-radius: 24px;
            color: #616161;
            -webkit-transition: all 0.3s;
            transition: all 0.3s;
        }

        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerTwo .headerInput .dataList {
            display: none;
            position: absolute;
            top: 45px;
            left: 13px;
            background: #ffffff 0% 0% no-repeat padding-box;
            background: #ffffff 0% 0% no-repeat padding-box;
            -webkit-box-shadow: 0px 0px 5px #0000001a;
            box-shadow: 0px 0px 5px #0000001a;
            z-index: 2;
            width: calc(100% - 13px);
            background: #fff;
            list-style: none;
            border-top: 1px solid #f1f1f1;
            border-bottom-left-radius: 24px;
            border-bottom-right-radius: 24px;
        }

            .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerTwo .headerInput .dataList li {
                padding: 12px;
                cursor: pointer;
            }

                .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerTwo .headerInput .dataList li:hover {
                    background: #fcfcfc;
                }

                .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerTwo .headerInput .dataList li:last-child {
                    border-bottom-left-radius: 24px;
                    border-bottom-right-radius: 24px;
                }

            .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerTwo .headerInput .dataList .seeAllResults {
                background: #f3f3f3;
            }

        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerTwo .headerInput input:focus {
            background: #ffffff 0% 0% no-repeat padding-box;
            background: #ffffff 0% 0% no-repeat padding-box;
            -webkit-box-shadow: 0px 0px 5px #0000001a;
            box-shadow: 0px 0px 5px #0000001a;
            border: none;
        }

        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerTwo .headerInput svg {
            position: absolute;
            top: 11px;
            left: 32px;
        }

.rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree {
    height: 60px;
}

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree button {
        outline: none;
        margin-right: 12px;
    }

a:not([href]):not([tabindex]) {
    color: #ffffff !important;
}

.rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .buttonClassic {
    font-size: 14px;
    color: #fff !important;
    text-decoration: none;
    background: #1976d2;
    padding: 10px 25px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
}

.rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .buttonClassicOne {
    background: none;
    color: #1976d2;
    padding: 9.5px 25px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .buttonClassicOne:hover {
        background: #e3f2fd;
    }

.rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .buttonClassicTwo {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    padding: 8.5px 25px;
    background: none;
    border: 1px solid #1976d2;
    color: #1976d2;
}

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .buttonClassicTwo:hover {
        background: #e3f2fd;
        border: 1px solid #fff;
    }

.rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .buttonClassicThree {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    padding: 9.5px 25px;
}

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .buttonClassicThree:hover {
        background: #0d47a1;
    }

.rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .buttonClassicFour {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    padding: 8px 8px;
    border-radius: 50%;
    margin-right: 0px;
}

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .buttonClassicFour svg .b {
        fill: #fff;
    }

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .buttonClassicFour:hover {
        background: #0d47a1;
    }

.rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage {
    color: #000;
    position: absolute;
    left: 50%;
    top: 45%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 700px;
    z-index: 3;
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    background: #ffffff 0% 0% no-repeat padding-box;
    -webkit-box-shadow: 0px 1px 3px #00000033;
    box-shadow: 0px 1px 3px #00000033;
    border-radius: 10px;
    padding: 20px;
    display: none;
    cursor: auto;
}

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage h3 {
        font-size: 24px;
    }

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage i {
        cursor: pointer;
        color: #c62828;
        font-size: 20px;
    }

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputsHeader {
        margin-bottom: 15px;
    }

        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputsHeader p:last-child {
            text-align: left;
        }

        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputsHeader p {
            font-size: 14px;
            color: #1976d2;
        }

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputs input {
        padding: 8px 12px;
        border-radius: 4px;
        border: 1px solid #616161;
    }

        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputs input:last-child {
            margin-bottom: 24px;
        }

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputs div:last-child {
        margin-left: 20px;
    }

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputs .openInputsLeftDate p {
        text-align: left;
        color: #bdbdbd;
        font-size: 12px;
        margin-left: 12px;
        margin-top: 4px;
    }

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputs .defaultSelect {
        width: 240px;
        padding: 8px 12px;
        border-radius: 4px;
    }

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openBarInputs {
        margin-top: 25px;
    }

        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openBarInputs .openBarInputsProgress {
            margin-left: 60px;
        }

            .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openBarInputs .openBarInputsProgress p {
                color: #1976d2;
                font-size: 14px;
                margin-bottom: 25px;
            }

            .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openBarInputs .openBarInputsProgress .indexRangeHeader {
                margin-bottom: 0px;
            }

                .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openBarInputs .openBarInputsProgress .indexRangeHeader .slider {
                    position: absolute;
                    cursor: pointer;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background-color: #ccc;
                    -webkit-transition: 0.4s;
                    transition: 0.4s;
                }

                    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openBarInputs .openBarInputsProgress .indexRangeHeader .slider:before {
                        position: absolute;
                        content: "";
                        height: 32px;
                        width: 32px;
                        left: -4px;
                        bottom: -8px;
                        border: 1px solid #ebebeb;
                        background-color: white;
                        -webkit-transition: 0.4s;
                        transition: 0.4s;
                    }

                .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openBarInputs .openBarInputsProgress .indexRangeHeader label {
                    margin: 0px;
                    margin-right: 8px;
                }

                .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openBarInputs .openBarInputsProgress .indexRangeHeader span {
                    margin-left: 8px;
                    width: 20px;
                }

            .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openBarInputs .openBarInputsProgress:first-child {
                margin-left: 0px;
            }

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputCheck {
        margin-top: 48px;
    }

        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputCheck label {
            font-size: 14px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            margin-bottom: 0.375em;
            color: #616161;
        }

            .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputCheck label input {
                position: absolute;
                left: -9999px;
            }

                .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputCheck label input:checked + span {
                    background-color: #e3f2fd;
                }

                    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputCheck label input:checked + span:before {
                        -webkit-box-shadow: inset 0 0 0 0.4375em #1976d2;
                        box-shadow: inset 0 0 0 0.4375em #1976d2;
                    }

            .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputCheck label span {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                padding: 0.375em 0.75em 0.375em 0.375em;
                border-radius: 99em;
                -webkit-transition: 0.25s ease;
                transition: 0.25s ease;
            }

                .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputCheck label span:hover {
                    background-color: #e3f2fd;
                }

                .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputCheck label span:before {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -ms-flex-negative: 0;
                    flex-shrink: 0;
                    content: "";
                    background-color: #fff;
                    width: 1.5em;
                    height: 1.5em;
                    border-radius: 50%;
                    margin-right: 0.375em;
                    -webkit-transition: 0.25s ease;
                    transition: 0.25s ease;
                    -webkit-box-shadow: inset 0 0 0 0.125em #1976d2;
                    box-shadow: inset 0 0 0 0.125em #1976d2;
                }

        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputCheck p {
            font-size: 14px;
            color: #1976d2;
            margin-bottom: 20px;
        }

        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputCheck .inputChecksPage {
            margin-top: 10px;
        }

            .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputCheck .inputChecksPage input {
                width: 16px;
                height: 16px;
            }

            .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputCheck .inputChecksPage label {
                margin: 0px;
                margin-left: 12px;
            }

        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputCheck .openInputChecksTwo {
            margin-left: 20px;
        }

            .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputCheck .openInputChecksTwo label {
                color: #616161;
            }

                .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputCheck .openInputChecksTwo label input {
                    position: relative;
                }

                .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputCheck .openInputChecksTwo label span:hover {
                    background-color: #e3f2fd;
                }

        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputCheck .openInputChecksThree {
            margin-left: 20px;
        }

    .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputButtons {
        margin-top: 80px;
    }

        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputButtons button {
            background: none;
            border: none;
            color: #1976d2;
            font-weight: 500;
            font-size: 14px;
        }

        .rows .centerCol .colsCenter .colsToCol:last-child .buttonsContainerThree .openFilterPage .openInputButtons .openInputLastButtons button:first-child {
            color: #c62828;
            margin-right: 48px;
        }

.rows .centerCol .pageInfo {
    margin-top: 30px;
    padding-right: 20px;
}

    .rows .centerCol .pageInfo p {
        font-size: 12px;
        color: #616161;
    }

    .rows .centerCol .pageInfo .perPage {
        margin-right: 24px;
    }

        .rows .centerCol .pageInfo .perPage select {
            padding: 4px;
            border: none;
            font-size: 12px;
            outline: none;
        }

    .rows .centerCol .pageInfo .pageNumber {
        margin-right: 24px;
    }

    .rows .centerCol .pageInfo .pageInfoIcons i {
        color: #616161;
        font-size: 14px;
        padding: 4px 8px;
    }

        .rows .centerCol .pageInfo .pageInfoIcons i:first-child {
            margin-right: 24px;
        }
/*
.leftSide {
    z-index: 999 !important;
    background: #fff;
    border-right: 1px solid #e6dcdc;
    position: fixed;
    top: 65px;
    left: 0px;
    width: 56px;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .leftSide .leftSideMenuActiveLink {
        color: #1976d2;
        border-left: 3px solid #1976d2;
        background: rgba(240, 239, 239, 0.4);
    }

        .leftSide .leftSideMenuActiveLink svg .b {
            fill: #1976d2;
        }

    .leftSide a {
        width: 100%;
        text-decoration: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 20px 15px;
        z-index: 100000;
        border-left: 3px solid #fff;
        font-weight: 400;
        color: #616161;
    }

        .leftSide a p {
            display: none;
            -webkit-transition: all 0.5s ease;
            transition: all 0.5s ease;
            text-align: center;
            margin-left: 30px;
            font-size: 12px;
            margin-bottom: 0rem;
        }

        .leftSide a svg {
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }

        .leftSide a:hover {
            background: white;
            color: #51a2f3;
            border-left: 3px solid #383838;
            background: rgba(240, 239, 239, 0.3);
        }

            .leftSide a:hover svg .b {
                fill: #1976d2;
            }

            .leftSide a:hover .box {
                background: #51a2f3;
            }

        .leftSide a:focus {
            color: #1976d2;
            border-left: 3px solid #1976d2;
            background: rgba(240, 239, 239, 0.4);
        }

            .leftSide a:focus svg .b {
                fill: #1976d2;
            }

            .leftSide a:focus .box {
                background: #1976d2;
            }

    .leftSide .openCloseButton {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        color: #616161;
        border: none;
        padding: 18px;
        cursor: pointer;
        width: 100%;
        outline: none;
        background: none;
    }

        .leftSide .openCloseButton i {
            font-size: 20px;
            text-align: center;
        }*/


/*.leftSide {
    z-index: 999 !important;
    background: #fff;
    border-right: 1px solid #e6dcdc;
    position: fixed;
    top: 65px;
    left: 0px;
    width: 56px;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .leftSide #dropdown-lvl1 {
        width: 100%;
    }

        .leftSide #dropdown-lvl1 .panel-body ul li a {
            padding-left: 70px;
            font-size: 13px;
        }

        .leftSide #dropdown-lvl1 .panel-body-second ul li a {
            padding-left: 94px;
        }

    .leftSide .leftSideMenuActiveLink {
        color: #1976d2;
        border-left: 3px solid #1976d2;
        background: rgba(240, 239, 239, 0.4);
    }
    .leftSide .leftSideMenuContainer {
        width: 100%;
    }

        .leftSide .leftSideMenuContainer .leftSideMenuActiveLink {
            color: #1976d2;
            border-left: 3px solid #1976d2;
            background: rgba(240, 239, 239, 0.4);
        }

            .leftSide .leftSideMenuContainer .leftSideMenuActiveLink svg .b {
                fill: #1976d2;
            }

        .leftSide .leftSideMenuContainer a {
            width: 100%;
            text-decoration: none;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            padding: 20px 15px;
            z-index: 100000;
            border-left: 3px solid #fff;
            font-weight: 400;
            color: #616161;
        }

            .leftSide .leftSideMenuContainer a p {
                display: none;
                -webkit-transition: all 0.5s ease;
                transition: all 0.5s ease;
                text-align: center;
                margin-left: 30px;
                font-size: 12px;
                margin-bottom: 0rem;
                position: relative;
            }

            .leftSide .leftSideMenuContainer a svg {
                -webkit-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
            }


    .leftSide a:hover {
        background: white;
        color: #51a2f3;
        border-left: 3px solid #383838;
        background: rgba(240, 239, 239, 0.3);
    }

        .leftSide a:hover svg .b {
            fill: #1976d2;
        }

        .leftSide a:hover .box {
            background: #51a2f3;
        }

    .leftSide a:focus {
        color: #1976d2;
        border-left: 3px solid #1976d2;
        background: rgba(240, 239, 239, 0.4);
    }

        .leftSide a:focus svg .b {
            fill: #1976d2;
        }

        .leftSide a:focus .box {
            background: #1976d2;
        }

    .leftSide .openCloseButton {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        color: #616161;
        border: none;
        padding: 18px;
        padding-left: 37px;
        cursor: pointer;
        width: 100%;
        outline: none;
        background: none;
    }

        .leftSide .openCloseButton i {
            font-size: 20px;
            text-align: center;
        }

    .leftSide::-webkit-scrollbar-track {
        background-color: #fff;
    }

    .leftSide::-webkit-scrollbar {
        width: 1px;
        background-color: #fff;
    }

    .leftSide::-webkit-scrollbar-thumb {
        background-color: #0ae;
    }*/
/* .leftSide .leftSideMenuContainer ul {
            cursor: pointer;
            display: none;
            -webkit-transition: all 2s linear;
            transition: all 2s linear;
        }

            .leftSide .leftSideMenuContainer ul li {
                list-style: none;
            }

                .leftSide .leftSideMenuContainer ul li a {
                    border: none;
                    background: none;
                    padding: 8px;
                    padding-left: 12px;
                    display: -webkit-box;
                    -webkit-line-clamp: 1;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    line-height: 30px;
                }

                    .leftSide .leftSideMenuContainer ul li a:hover > ul {
                        display: block;
                    }

        .leftSide .leftSideMenuContainer a:hover {
            background: white;
            color: #51a2f3;
            border-left: 3px solid #383838;
            background: rgba(240, 239, 239, 0.3);
        }

            .leftSide .leftSideMenuContainer a:hover svg .b {
                fill: #1976d2;
            }

            .leftSide .leftSideMenuContainer a:hover .box {
                background: #51a2f3;
            }

        .leftSide .leftSideMenuContainer a:focus {
            color: #1976d2;
            border-left: 3px solid #1976d2;
            background: rgba(240, 239, 239, 0.4);
        }

            .leftSide .leftSideMenuContainer a:focus svg .b {
                fill: #1976d2;
            }

            .leftSide .leftSideMenuContainer a:focus .box {
                background: #1976d2;
            }

        .leftSide .leftSideMenuContainer:hover > ul {
            display: block;
        }*/

/*.leftSide .openCloseButton {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        color: #616161;
        border: none;
        padding: 18px;
        cursor: pointer;
        width: 100%;
        outline: none;
        background: none;
    }

        .leftSide .openCloseButton i {
            font-size: 20px;
            text-align: center;
        }*/



.leftSide {
    z-index: 999 !important;
    background: #fff;
    border-right: 1px solid #e6dcdc;
    position: fixed;
    top: 65px;
    left: 0px;
    width: 56px;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow-y: scroll;
    padding-bottom: 100px;
    scrollbar-width: none;
}



    .leftSide .panel-collapse {
        width: 100%;
    }

        .leftSide .panel-collapse .panel-body ul li a {
            padding-left: 70px;
            font-size: 13px;
            width: 290px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .leftSide.panel-collapse .panel-body-second ul li a {
            padding-left: 94px;
        }

    .leftSide .leftSideMenuActiveLink {
        color: #1976d2;
        border-left: 3px solid #1976d2;
        background: rgba(240, 239, 239, 0.4);
    }

        .leftSide .leftSideMenuActiveLink svg .b {
            fill: #1976d2;
        }

    .leftSide a {
        width: 100%;
        position: relative;
        text-decoration: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 20px 15px;
        z-index: 100000;
        border-left: 3px solid #fff;
        font-weight: 400;
        color: #616161;
    }

        .leftSide a p {
            display: none;
            -webkit-transition: all 0.5s ease;
            transition: all 0.5s ease;
            text-align: left;
            margin-left: 30px;
            font-size: 15px;
            margin-bottom: 0rem;
            width: 170px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

.leftSideIconRotate {
    transform: rotate(180deg);
}

.leftSide a i {
    position: absolute;
    right: 23px;
    display: none;
    transition: .5s ease;
}

.leftSide a svg {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.leftSide a:hover {
    background: white;
    color: #51a2f3;
    border-left: 3px solid #383838;
    background: rgba(240, 239, 239, 0.3);
}

    .leftSide a:hover svg .b {
        fill: #1976d2;
    }

    .leftSide a:hover .box {
        background: #51a2f3;
    }

.leftSide a:focus {
    color: #1976d2;
    border-left: 3px solid #1976d2;
    background: rgba(240, 239, 239, 0.4);
}

    .leftSide a:focus svg .b {
        fill: #1976d2;
    }

    .leftSide a:focus .box {
        background: #1976d2;
    }

.leftSide .openCloseButton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    color: #616161;
    border: none;
    padding: 18px;
    padding-left: 37px;
    cursor: pointer;
    width: 100%;
    outline: none;
    background: none;
}

    .leftSide .openCloseButton i {
        font-size: 20px;
        text-align: center;
    }

.leftSide::-webkit-scrollbar-track {
    background-color: #fff;
}

.leftSide::-webkit-scrollbar {
    width: 1px;
    background-color: #fff;
}

.leftSide::-webkit-scrollbar-thumb {
    background-color: #0ae;
}



.selectedData {
    width: calc(100% - 136px);
    height: 75px;
    background: #e3f2fd;
    padding: 0px 18px;
    position: fixed;
    bottom: 0;
    display: none;
}

    .selectedData .selectedTextInfo p {
        font-size: 16px;
        color: #212121;
    }

        .selectedData .selectedTextInfo p span {
            color: #1976d2;
            font-size: 20px;
            font-weight: 600;
        }

    .selectedData .selectedIcons i {
        color: #616161;
        font-size: 16px;
        padding: 12px;
    }

    .selectedData .popupSelectedDataInfo {
        position: absolute;
        left: 30px;
        bottom: 90px;
        background: #7e57c2;
        border-radius: 8px;
        padding: 15px;
        color: #fff;
        width: 240px;
        height: 160px;
    }

        .selectedData .popupSelectedDataInfo .popupselectedDataTitle {
            font-size: 16px;
            margin-bottom: 6px;
        }

        .selectedData .popupSelectedDataInfo .popupSelectedDataText {
            font-size: 14px;
            color: #e0e0e0;
            margin-bottom: 16px;
        }

        .selectedData .popupSelectedDataInfo .popupSelectedDataButton {
            background: none;
            border: none;
            font-size: 14px;
            color: #fff;
            outline: none;
        }

        .selectedData .popupSelectedDataInfo i {
            color: #7e57c2;
            position: absolute;
            bottom: -18px;
            left: 100px;
            cursor: auto;
            font-size: 32px;
        }

/*

ADDNEW
ADDNEW
ADDNEW
ADDNEW
ADDNEW
ADDNEW

*/
.switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 24px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

@media only screen and (max-device-width: 1300px) {
    .tabMenu {
        margin-top: 110px;
    }

    .buttonsContainerThree {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .buttonsContainerOne {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .buttonsContainerOne button {
            margin-top: 8px;
        }

        .buttonsContainerOne .addNewDisable:last-child {
            margin-left: 0px !important;
        }

    .headerInputText {
        width: 200px !important;
    }

    .buttonsContainerThree {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 110px !important;
    }

        .buttonsContainerThree .buttonClassicOne,
        .buttonsContainerThree .buttonClassicTwo,
        .buttonsContainerThree .buttonClassicThree,
        .buttonsContainerThree .buttonClassicFour {
            margin-top: 8px;
            margin-right: 0px;
        }

    .tableContainer table thead tr th {
        font-size: 12px !important;
    }
}

.colsToCenter {
    margin-top: 145px !important;
}

@media only screen and (max-device-width: 991px) {
    .tableIcons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .tableIcons svg {
            margin-right: 0px !important;
            width: 16px !important;
            height: 14px !important;
        }
}

#color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120vh;
    background-color: #02022d;
    opacity: 0.6;
}

.signInContainer {
    width: 100%;
}

    .signInContainer .row .signInLeftSide .pCRMBorder {
        width: 2px;
        height: 92px;
        background: #fff;
    }

    .signInContainer .row .signInLeftSide a {
        color: #fff;
        font-size: 34px;
        font-weight: 600;
        text-decoration: none;
    }

    .signInContainer .row .signInLeftSide img {
        cursor: pointer;
    }

    .signInContainer .row .signInRightSide {
        padding: 24px;
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: 10px;
    }

        .signInContainer .row .signInRightSide h2 {
            font-weight: 600;
            font-size: 34px;
            margin-bottom: 20px;
        }

        .signInContainer .row .signInRightSide .headerInfo {
            margin-top: 12px;
        }

            .signInContainer .row .signInRightSide .headerInfo a {
                margin-left: 12px;
            }

        .signInContainer .row .signInRightSide .inputs {
            margin-top: 36px;
            width: 100%;
        }

            .signInContainer .row .signInRightSide .inputs .inputText {
                margin-bottom: 16px !important;
            }

            .signInContainer .row .signInRightSide .inputs input {
                width: 100%;
                padding: 9.5px 12px;
                border-radius: 4px;
                border: 1px solid #616161;
            }

            .signInContainer .row .signInRightSide .inputs .inputText {
                margin: -12px 16px 0px 16px;
            }

                .signInContainer .row .signInRightSide .inputs .inputText p {
                    color: #bdbdbd;
                    font-size: 12px;
                }

        .signInContainer .row .signInRightSide .loginButton {
            margin-top: 12px;
            float: right;
            background: #1976d2;
            color: #fff;
            text-decoration: none;
            padding: 10.5px 25px;
            border-radius: 24px;
            border: none;
        }

        .signInContainer .row .signInRightSide .orBorderCont {
            margin-top: 5rem;
        }

            .signInContainer .row .signInRightSide .orBorderCont .orText {
                margin-bottom: 0px;
                margin-right: 16px;
                margin-left: 16px;
            }

            .signInContainer .row .signInRightSide .orBorderCont .cizgi {
                width: 100%;
                height: 1px;
                background: #616161;
            }

        .signInContainer .row .signInRightSide .socialLinks {
            margin-top: 30px;
            margin-bottom: 14px;
        }

            .signInContainer .row .signInRightSide .socialLinks .socialLinkButton {
                width: 280px;
                margin-bottom: 12px;
                background: #1976d2;
                padding: 10.5px 25px;
                color: #fff;
                border-radius: 24px;
                text-decoration: none;
            }

                .signInContainer .row .signInRightSide .socialLinks .socialLinkButton i {
                    margin-right: 12px;
                }

                .signInContainer .row .signInRightSide .socialLinks .socialLinkButton:first-child {
                    background: #db4437;
                }

                .signInContainer .row .signInRightSide .socialLinks .socialLinkButton:last-child {
                    margin-bottom: 0px;
                    background: #4267b2;
                }

/*input*/
.form-wrapper-outer {
    padding: 40px;
    border-radius: 8px;
    margin: auto;
    width: 460px;
    border: 1px solid #dadce0;
    margin-top: 7%;
}


.table-scroll-wrapper {
    height: 260px; /* sabit alan */
    overflow-y: scroll; /* HER ZAMAN scrollbar */
    overflow-x: hidden;
}

    .table-scroll-wrapper:has(tbody tr) {
        overflow-y: scroll;
    }

    .table-scroll-wrapper:not(:has(tbody tr)) {
        overflow-y: hidden;
    }

#contenttable thead th {
    position: sticky;
    top: 0;
    z-index: 5;
}

#contenttable tbody tr {
    height: 52px;
}


.field-wrapper {
    position: relative;
    margin-bottom: 15px;
}

    .field-wrapper input {
        border: 1px solid #dadce0;
        padding: 15px;
        border-radius: 4px;
        width: 100%;
    }

    .field-wrapper .field-placeholder {
        font-size: 16px;
        position: absolute;
        /* background: #fff; */
        bottom: 6px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        color: #80868b;
        left: 6px;
        padding: 0 8px;
        -webkit-transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
        transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
        text-align: left;
        width: 100%;
        transition: all 0.1s ease-in-out;
    }

        .field-wrapper .field-placeholder span {
            background: #ffffff;
            padding: 0px 8px;
        }

    .field-wrapper input:not([disabled]):focus ~ .field-placeholder {
        color: #1a73e8;
    }

    .field-wrapper input:not([disabled]):focus ~ .field-placeholder,
    .field-wrapper.hasValue input:not([disabled]) ~ .field-placeholder {
        bottom: 30px;
        font-size: 11px;
    }



.field-wrapperTextArea {
    position: relative;
    margin-bottom: 15px;
}

    .field-wrapperTextArea textarea {
        border: 1px solid #dadce0;
        padding: 15px;
        border-radius: 4px;
        width: 100%;
        margin-top: 0 !important; /* .addNewInputs textarea margin-top:25px etkisini kır */
    }

    .field-wrapperTextArea .field-placeholder {
        font-size: 16px;
        position: absolute;
        top: 14px; /* bottom yerine top ile hizalama */
        left: 6px; /* input ile aynı hizaya gelsin */
        bottom: auto;
        padding: 0 8px;
        color: #80868b;
        z-index: 1;
        width: 100%;
        text-align: left;
        pointer-events: none; /* tıklamayı engellemesin */
        transition: all 0.1s ease-in-out;
    }

        .field-wrapperTextArea .field-placeholder span {
            background: #ffffff;
            padding: 0px 8px;
        }

    .field-wrapperTextArea textarea:not([disabled]):focus ~ .field-placeholder {
        color: #1a73e8;
    }

    /* label yukarı kalkışı: bottom hack yerine top ile */
    .field-wrapperTextArea textarea:not([disabled]):focus ~ .field-placeholder,
    .field-wrapperTextArea.hasValue textarea:not([disabled]) ~ .field-placeholder {
        top: -8px;
        font-size: 11px;
    }

#eyeIcon {
    position: absolute;
    right: 16px;
    top: 15px;
    cursor: pointer;
}

#dynamicMenu {
    width: 100%;
}

@media only screen and (max-device-width: 991px) {
    body {
        overflow: auto;
    }

    .field-wrapper input:not([disabled]):focus ~ .field-placeholder,
    .field-wrapper.hasValue input:not([disabled]) ~ .field-placeholder {
        -webkit-transform: scale(0.75) translateY(-30px) translateX(-95px);
        transform: scale(0.75) translateY(-30px) translateX(-95px);
    }

    .container {
        padding-top: 160px;
        padding-bottom: 24px;
    }

        .container .signInRightSide {
            margin-top: 24px;
        }
}

@media only screen and (max-device-width: 768px) {
    .field-wrapper input:not([disabled]):focus ~ .field-placeholder,
    .field-wrapper.hasValue input:not([disabled]) ~ .field-placeholder {
        -webkit-transform: scale(0.75) translateY(-30px) translateX(-65px);
        transform: scale(0.75) translateY(-30px) translateX(-65px);
    }
}

@media only screen and (max-device-width: 576px) {
    body {
        overflow: auto;
        background: none;
        opacity: 1;
    }

    .col-lg-6:first-child {
        margin-top: 100px;
    }

    .socialLinks {
        width: 100% !important;
    }

        .socialLinks .socialLinkButton {
            width: 270px !important;
        }

    .field-wrapper input:not([disabled]):focus ~ .field-placeholder,
    .field-wrapper.hasValue input:not([disabled]) ~ .field-placeholder {
        -webkit-transform: scale(0.75) translateY(-30px) translateX(-15%);
        transform: scale(0.75) translateY(-30px) translateX(-15%);
    }

    .signInLeftSide a {
        font-size: 20px !important;
    }

    .signInLeftSide .pCRMBorder {
        height: 48px !important;
    }

    .signInLeftSide img {
        width: 190px;
    }
}

/*ADDNEW - ADDNEW - ADDNEW - ADDNEW - ADDNEW - ADDNEW - ADDNEW - ADDNEW - ADDNEW - ADDNEW - ADDNEW*/
h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin: 0 0 8px;
    padding: 0px;
}

.colsToCol:first-child {
    height: 80px;
    padding-left: 16px;
}

    .colsToCol:first-child h2 {
        font-size: 20px;
        color: #1976d2;
    }

    .colsToCol:first-child p {
        font-size: 12px;
        color: #bdbdbd;
    }

        .colsToCol:first-child p span {
            color: #1976d2;
        }

.buttonsContainerThree .buttonClassicFour i {
    font-size: 20px;
    padding: 4px 6px;
}

.addNewHeadLineText {
    font-size: 14px;
    color: #1976d2;
    margin-top: 12px;
}

.openInputChecks {
    /* Hide default HTML checkbox */
}

.iCpad {
    padding-right: 37px;
}

.openInputChecks input[type="radio"] {
    width: 21px !important;
    height: 21px;
    margin-right: 12px;
}

.openInputChecks input[type="checkbox"] {
    width: 21px !important;
    height: 21px;
    margin-right: 12px;
}

.openInputChecks label {
    margin-top: 12px;
    cursor: pointer;
}

.openInputChecks .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 16px;
}

    .openInputChecks .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.w3-addNew-container {
    border: none;
    background: #fff;
}

    .w3-addNew-container .w3-button:hover {
        background: #e3f2fd !important;
    }

    .w3-addNew-container .w3-border {
        border: none !important;
        border-top: 1px solid #ccc !important;
    }

.addNewInputs {
    margin-top: 24px;
}

    .addNewInputs .col-md-3 {
        margin-top: 24px;
        padding: 0px;
    }

    .addNewInputs .textareaEye {
        position: absolute;
        z-index: 100;
        top: 40px;
        right: 30px;
    }

    .addNewInputs .inputEye {
        background: #fff;
        z-index: 100;
        position: absolute;
        top: 14px;
        right: 30px;
    }

    .addNewInputs i {
        cursor: pointer;
        padding: 3px;
    }

    .addNewInputs h1 {
        font-size: 34px;
        color: #616161;
        margin-bottom: 25px;
    }

    .addNewInputs textarea {
        margin-top: 25px;
    }

    .addNewInputs input,
    .addNewInputs select,
    .addNewInputs textarea {
        overflow: hidden;
        padding: 7px 40px 7px 16px;
        border: 1px solid #616161;
        border-radius: 4px;
        width: 100%;
    }

        .addNewInputs input::-webkit-input-placeholder,
        .addNewInputs textarea::-webkit-input-placeholder {
            color: #000;
        }

        .addNewInputs input:-ms-input-placeholder,
        .addNewInputs textarea:-ms-input-placeholder {
            color: #000;
        }

        .addNewInputs input::-ms-input-placeholder,
        .addNewInputs textarea::-ms-input-placeholder {
            color: #000;
        }

        .addNewInputs input::placeholder,
        .addNewInputs textarea::placeholder {
            color: #000;
        }

        .addNewInputs input:focus,
        .addNewInputs select:focus,
        .addNewInputs textarea:focus {
            border: 1px solid #1976d2;
        }

    .addNewInputs select {
        -webkit-appearance: none;
        cursor: pointer;
        -moz-appearance: none;
        background: transparent;
        background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
        background-repeat: no-repeat;
        background-position-x: 97%;
        background-position-y: 10px;
        -moz-appearance: none;
        /* Firefox */
        -webkit-appearance: none;
        /* Safari and Chrome */
        appearance: none;
    }

    .addNewInputs .informationText {
        margin-top: 2px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0 20px;
    }

        .addNewInputs .informationText p {
            font-size: 12px;
            color: #bdbdbd;
        }

    .addNewInputs .inputButton button {
        padding: 10px 25px;
        background: #ffa200;
        font-size: 14px;
        color: #fff;
        text-decoration: none;
        outline: 0;
    }

        .addNewInputs .inputButton button:hover {
            background: #e49000;
        }

/* The slider */
input:checked + .slider {
    background-color: #3d9dfc;
}

input:focus + .slider {
    -webkit-box-shadow: 0 0 1px #3d9dfc;
    box-shadow: 0 0 1px #3d9dfc;
}

input:checked + .slider:before {
    -webkit-transform: translateX(32px);
    transform: translateX(32px);
    background: #1976d2;
    border: none;
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

@media only screen and (max-device-width: 480px) {
    .headerLeftSide .photoAvatar {
        margin-right: -36px;
    }

    .colsToCol:first-child p {
        font-size: 10px !important;
    }

    .colsToCol:last-child {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }

    .headerInputText {
        width: 80% !important;
    }

    .buttonsContainerThree .buttonClassicFour {
        margin: 0px !important;
    }
}

.colsToCol:last-child {
    height: 82vh !important;
}

@media only screen and (max-device-width: 870px) {
    .tabMenu a {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media only screen and (max-device-width: 991px) {
    body {
        overflow-y: auto;
    }

    .inputs {
        width: 100% !important;
    }

    .colsToCol:last-child {
        height: 100% !important;
    }

    .sideCol:last-child {
        height: 120% !important;
    }
}

@media only screen and (max-device-width: 768px) {
    .sideCol:last-child {
        height: 150% !important;
    }
}

@media only screen and (max-device-width: 1300px) {
    .tabMenu {
        margin-top: 0px !important;
    }
}

.colsCenter {
    margin-top: 65px !important;
}


button {
    outline: none;
    margin-right: 12px;
}

.buttonClassic {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    background: #1976d2;
    padding: 10px 25px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
}

.buttonClassicOne {
    background: none;
    color: #1976d2;
    padding: 9.5px 25px;
    transition: all 0.5s;
}

    .buttonClassicOne:hover {
        background: #e3f2fd;
    }

.buttonClassicTwo {
    transition: all 0.5s;
    padding: 8.5px 25px;
    background: none;
    border: 1px solid #1976d2;
    color: #1976d2;
}

    .buttonClassicTwo:hover {
        background: #e3f2fd;
        border: 1px solid #fff;
    }

.buttonClassicThree {
    transition: all 0.5s;
    padding: 9.5px 25px;
    margin-left: 11px;
}

    .buttonClassicThree:hover {
        background: #0d47a1;
    }

.buttonClassicFour {
    transition: all 0.5s;
    padding: 8px 8px;
    border-radius: 50%;
    margin-right: 0px;
}

    .buttonClassicFour:hover {
        background: #0d47a1;
    }



.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 16px;
    margin: 0px;
    margin-right: 28px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: -2px;
        bottom: -5px;
        background-color: white;
        -webkit-transition: .4s;
        border: 1px solid #eee;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }




.form-control:focus {
    box-shadow: none !important;
}

#filtertable .field-wrapper input {
    padding: 0px !important;
}

#filtertable select, #filtertable .field-wrapper input {
    text-indent: 5px;
}

select:focus {
    outline-color: #1976d2;
}

.openInputChecks {
    margin-top: 0px !important;
}

.inputActive {
    bottom: 30px !important;
    font-size: 11px !important;
}

.textAreaActive {
    bottom: 78px !important;
    font-size: 11px !important;
}

*:focus {
    outline: none;
}

.panelSelectCustom {
    position: relative;
}

    .panelSelectCustom .selectHeader {
        position: absolute;
        top: 9px;
        left: 20px;
        z-index: 1;
        cursor: pointer;
        background: #fff;
        color: #3a3a3a;
        padding: 0 4px;
        margin-bottom: 0rem;
        transition: all 0.1s ease-in-out;
    }

    .panelSelectCustom .selectIcon {
        position: absolute;
        top: 17px;
        right: 20px;
        z-index: 99999999999;
    }

    .panelSelectCustom select {
        z-index: 2;
        opacity: 1;
        padding: 7px 12px 7px 22px;
        border-radius: 4px;
        position: relative;
        width: 100%;
        transition: all 0.1s ease-in-out;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none; /* Remove default arrow */
        color: black;
        cursor: pointer;
    }

@media(max-width:1200px) {
    .addNewInputs .col-md-3 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

.text-danger {
    position: absolute !important;
}

.signInRightSide .field-wrapper {
    margin-bottom: 35px;
}

.panelSelectCustom .panelSelect {
    /* overflow-y: scroll;*/
}

#dataList {
    padding: 7px 7px 7px 16px;
}

.multiselect {
}

.selectBox {
    position: relative;
}

    .selectBox select {
        width: 100%;
    }

.overSelect {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#checkboxes {
    display: none;
    border: 1px #dadada solid;
    height: 240px;
    overflow-y: scroll;
}

    #checkboxes label {
        display: block;
    }

        #checkboxes label:hover {
            background-color: #1e90ff;
            color: #fff;
        }

#checkboxes {
}

    #checkboxes label {
        padding: 10px 8px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 0rem;
    }

        #checkboxes label input {
            padding: 0px;
            width: 24px;
        }


    #checkboxes::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: #F5F5F5;
    }

    #checkboxes::-webkit-scrollbar {
        width: 3px;
        background-color: #F5F5F5;
    }

    #checkboxes::-webkit-scrollbar-thumb {
        background-color: #33bbf1;
    }

#multiple-select-container {
    position: relative;
}

    #multiple-select-container p {
        position: absolute;
        top: -9px;
        left: 10px;
        padding: 0px 4px;
        background: #fff;
        font-size: 12px;
    }


#multiple-select {
    padding: 0px !important;
    height: 200px !important;
    overflow-y: scroll;
}

    #multiple-select option {
        padding: 12px;
    }

    #multiple-select::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        background-color: #F5F5F5;
    }

    #multiple-select::-webkit-scrollbar {
        width: 3px;
        background-color: #F5F5F5;
    }

    #multiple-select::-webkit-scrollbar-thumb {
        background-color: #33bbf1;
    }

.multiCustom .selectHeader {
    top: -11px;
    background: #fff !important;
    padding: 1px 4px;
    z-index: 20 !important;
}

.multiCustom .panelSelect {
    color: #000 !important;
    opacity: 1 !important;
}

.panelSelectCustom .selectHeader {
    position: absolute;
    top: -8px;
    left: 9px;
    z-index: 3;
    cursor: pointer;
    background: #fff;
    color: #3a3a3a;
    padding: 0 4px;
    margin-bottom: 0rem;
    transition: all 0.1s ease-in-out;
    font-size: 10px;
}

.panelSelectCustom input {
    transition: 0s !important;
    -webkit-transition: 0s !important;
}
/*.searchableSelect custom-select{
    padding:none !important;
    border:none !important;
}*/

.custom-select {
    padding: 1px 0px 0px 0px !important;
    border: none;
}

.selectize-input {
    border: 1px solid #ccc;
}

/* .selectize-input > input{
        width:100% !important;
    }*/

.panelSelectCustom {
    cursor: pointer;
}




.rows {
    height: 100%;
    width: 100%;
}

.colsCenter {
    padding-left: 0px;
    height: 100%;
    width: 100%;
    padding-right: 75px;
    position: fixed;
}

/* ===== LOADING OVERLAY FULL SCREEN FIX ===== */
#loading-overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.45);
    display: none; /* JS açınca görünür olacak */
    align-items: center;
    justify-content: center;
    z-index: 99999; /* her şeyin ÜSTÜNDE olacak */
}

    #loading-overlay .loading-icon {
        width: 48px;
        height: 48px;
        border: 5px solid #fff;
        border-top-color: transparent;
        border-radius: 50%;
        animation: spin 0.9s linear infinite;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* ============================================================
   SIDEBAR WIDTH
   ============================================================ */

.main-sidebar {
    width: 260px;
    overflow-y: auto !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
}

.sidebar-collapsed .main-sidebar {
    width: 80px !important;
}

/* ============================================================
   NAVBAR FIX (yükseklik ve padding)
   ============================================================ */

.main-header.navbar {
    min-height: 50px !important;
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar-right-area {
    display: flex;
    align-items: center;
    margin-left: auto !important; /* sağa yaslama */
    gap: 16px;
    padding-right: 10px;
}

.navbar-page-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .navbar-page-title span {
        font-size: 1.05rem;
        font-weight: 600;
        color: #333;
        padding-left: 6px;
        padding-right: 12px;
    }

.logout-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    text-decoration: none !important;
    font-size: 1.05rem;
}

    .logout-link i {
        font-size: 1.1rem;
    }

    .logout-link i {
        color: #e74c3c;
    }

    .logout-link:hover i {
        color: #c0392b;
    }

    .logout-link:hover {
        color: #c0392b;
    }

.top-icon i {
    font-size: 1.15rem;
    color: #555;
}

.top-icon:hover i {
    color: #3464e0;
}

/* (content-header kullanırsan kalsın, kullanmıyorsan fark etmez) */
.content-header {
    padding: 10px 20px 0 20px;
}

    .content-header h2,
    .content-header .breadcrumb {
        margin-bottom: 0 !important;
    }

/* Footer’ı komple gizlemek için */
footer.main-footer {
    /*   display: none !important;
    height: 0 !important;*/
}

/* ============================================================
   MODULE ICON
   ============================================================ */

.module-icon {
    background: #4b7bec;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 8px;
    text-transform: uppercase;
}

/* ============================================================
   MENU BADGE
   ============================================================ */

/* Tüm modlarda yuvarlak, sabit boy rozet */
.menu-circle-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    border-radius: 50%;
    font-size: 0.80rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 8px;
    background-color: rgba(52, 100, 224, 0.12);
    color: #3464e0;
}


/* Dark mode */
.dark-mode .menu-circle-badge {
    background-color: #4b7bec !important;
    color: #fff !important;
}

/* Normalde ok ikonu görünsün */
.main-sidebar .nav-link > .right {
    display: inline-block;
}

/* Sidebar kapalıyken (body.sidebar-collapse) ok ikonunu gizle */
.sidebar-collapse .main-sidebar .nav-link > .right {
    display: none !important;
}

/* Emin olmak için mini mod kombinasyonu da: */
.sidebar-mini.sidebar-collapse .main-sidebar .nav-link > .right {
    display: none !important;
}

/* Mobil sidebar tam açılmama bug fix */
.sidebar-open .main-sidebar {
    transform: translateX(0) !important;
    width: 250px !important; /* AdminLTE default width */
}

/* Eğer collapsed modla çakışırsa hoverdaki genişliği koru */
body.sidebar-mini.sidebar-collapse.sidebar-open .main-sidebar {
    width: 250px !important;
}





/*------------------------*/

/* Sidebar collapse — p tag gizleme */
.sidebar-mini.sidebar-collapse
.main-sidebar .nav-sidebar > .nav-item > .nav-link > p {
    display: none;
}

/* ============================================================
   OGAN TABLE STYLES (dokunmadım, hepsi gerekli)
   ============================================================ */

.ogan-table {
    width: 100%;
    border-collapse: separate !important;
    border-spacing: 0 6px;
}

.ogan-table-row {
    background: var(--ogan-row-bg, #fff);
    transition: background .18s, box-shadow .18s, transform .12s;
}

.ogan-table-row-rounded {
    border-radius: 14px;
}

.ogan-table-row:hover {
    background: rgba(52, 100, 224, 0.04);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.ogan-table-cell {
    vertical-align: middle;
    padding: 0.55rem 0.75rem;
    border-top: none !important;
}

.ogan-table .ogan-table-cell:first-child {
    border-radius: 12px 0 0 12px;
}

.ogan-table .ogan-table-cell:last-child {
    border-radius: 0 12px 12px 0;
}

.ogan-table-footer-cell {
    border-top: none;
    font-size: .85rem;
    color: #6b7280;
}

.ogan-table-actions svg .b {
    fill: #9ca3af;
    transition: fill .2s;
}

.ogan-table-actions svg:hover .b {
    fill: #3464e0;
}

.ogan-pagination-wrapper {
    display: flex;
    justify-content: flex-end;
}

.ogan-pagination li a {
    border-radius: 999px;
    padding: 4px 10px;
}

/* DARK MODE TABLE */
body.darkMode .ogan-table-row {
    background: #1e1e1e;
}

    body.darkMode .ogan-table-row:hover {
        background: rgba(255,255,255,0.07);
        box-shadow: 0 2px 6px rgba(0,0,0,0.45);
    }

body.darkMode .ogan-table-cell {
    color: #e5e7eb;
}

body.darkMode .ogan-table-footer-cell {
    color: #9ca3af;
}

body.darkMode .ogan-table-actions svg .b {
    fill: #d1d5db;
}

body.darkMode .ogan-table-actions svg:hover .b {
    fill: #ffffff;
}

/* ============================================================
   GENERAL DARK MODE
   ============================================================ */

body.darkMode,
body.darkMode .wrapper,
body.darkMode .content-wrapper {
    background: #0f0f0f !important;
    color: #e4e4e4 !important;
}

    body.darkMode .main-header {
        background: #1a1a1a !important;
        color: #f1f1f1 !important;
    }

    body.darkMode .main-sidebar {
        background: #111 !important;
    }

    body.darkMode .nav-sidebar .nav-link {
        color: #cfcfcf !important;
    }

        body.darkMode .nav-sidebar .nav-link.active {
            color: #fff !important;
            background: #222 !important;
        }

    body.darkMode .main-footer {
        background: #111 !important;
        color: #aaa !important;
    }

/* ============================================================
   SINGLE + CORRECT DARKMODE SWITCH
   ============================================================ */

.darkmode-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 25px;
    cursor: pointer;
}

    .darkmode-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }


.darkmode-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

    .darkmode-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    /* Slider */
    .darkmode-switch .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #777;
        transition: .4s;
        border-radius: 34px;
    }

        .darkmode-switch .slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

    /* Checked */
    .darkmode-switch input:checked + .slider {
        background-color: #4b7bec;
    }

        .darkmode-switch input:checked + .slider:before {
            transform: translateX(24px);
        }

/* Yuvarlak */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

* Navbar genel yapı */
.main-header .navbar-nav {
    display: flex;
    align-items: center;
}

/* Sağ tarafa yaslama garantisi */
.navbar-nav.ms-auto {
    margin-left: auto !important;
    justify-content: flex-end !important;
}

    /* Sağdaki icon grubu spacing */
    .navbar-nav.ms-auto .nav-item {
        display: flex;
        align-items: center;
        padding-left: 6px;
        padding-right: 6px;
    }

/* Switch container spacing */
.navbar-nav .darkmode-switch {
    display: inline-flex;
    align-items: center;
}

/* Logout + membership ikonları */
.navbar-nav .nav-link,
.navbar-nav .logout-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

    /* Ikon boyutu ve hizası */
    .navbar-nav .nav-link i,
    .navbar-nav .logout-link i {
        font-size: 1.25rem;
        line-height: 1;
    }

    /* Hover efekti */
    .navbar-nav .nav-link:hover i {
        color: #3464e0 !important;
    }

    .navbar-nav .logout-link:hover i {
        color: #d43f3a !important;
    }

/* =========================================
   CONTENT AREA SCROLL FIX
   ========================================= */

.table-responsive {
    overflow-x: auto !important;
}

/* =========================================
   FILTER + BUTTONS BAR ALIGNMENT
   ========================================= */
.ogan-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

    .ogan-toolbar .btn {
        border-radius: 20px !important;
        padding: 6px 18px !important;
        font-size: 0.95rem;
        font-weight: 600;
    }

/* === OGAN: List & Filter tabloları header görünümü === */

/* Filter tablosu ve ana liste tablosu header */
#filtertable thead th,
.ogan-list-table thead th {
    font-size: 0.875rem;
    font-weight: 600;
    background-color: #f3f4f6;
    color: #111827;
    vertical-align: middle;
    white-space: nowrap;
    border-bottom: 1px solid #e5e7eb;
}


/* Bootstrap / AdminLTE ile uyumlu table-dark desteği */
.table-dark th,
.table-dark td {
    background-color: #f3f4f6;
    color: #111827;
}

body.darkMode .table-dark th,
body.darkMode .table-dark td {
    background-color: #111827;
    color: #e5e7eb;
}


/* ==========================================================================
   1. GENEL SAYFA LAYOUT DÜZELTMELERİ (AdminLTE + mevcut custom CSS uyumu)
   ========================================================================== */


/* içerik blokları alt alta düzgün dizilsin */
.content {
    display: block;
    width: 100%;
    min-height: auto !important;
}


/* ==========================================================================
   2. FILTER TABLOSU (Advanced Search aç/kapa) - SENİN MEVCUT YAPINA UYUMLU
   ========================================================================== */

/* Filter table yatay scroll için wrapper */
.filtertable-wrapper {
    width: 100%;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 10px;
    -webkit-overflow-scrolling: touch;
}

/* Collapse ile açılan FILTER TABLE */
#filtertable {
    width: 100%;
    min-width: 900px;
    white-space: nowrap;
}

    /* Filter thead görünürlüğü */
    #filtertable thead th {
        font-size: 0.85rem;
        font-weight: 600;
        background-color: #f3f4f6 !important;
        color: #111827 !important;
        border-bottom: 1px solid #e5e7eb !important;
    }


    /* Filter input ve select düzeltmesi */
    #filtertable .field-wrapper input {
        padding: 0px !important;
    }

    #filtertable select,
    #filtertable .field-wrapper input {
        text-indent: 5px;
    }


/* ==========================================================================
   3. ANA TABLO (LIST TABLE) – YATAY SCROLL & OKUNAKLILIK
   ========================================================================== */

.table-scroll-wrapper {
    width: 100%;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 10px;
    -webkit-overflow-scrolling: touch;
}

    .table-scroll-wrapper table {
        min-width: 1200px;
        white-space: nowrap;
    }

/* Header görünürlüğü */
.ogan-list-table thead th {
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    background-color: #f3f4f6 !important;
    color: #111827 !important;
    border-bottom: 1px solid #e5e7eb !important;
}

/* Dark mode header */
body.darkMode .ogan-list-table thead th {
    background-color: #111827 !important;
    color: #e5e7eb !important;
    border-color: #374151 !important;
}


/* ==========================================================================
   4. 3 NOKTALI ROW ACTION MENÜ (•••)
   ========================================================================== */

.ogan-table-actions {
    position: relative;
    display: inline-block;
}

    .ogan-table-actions .tableIcons {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    /* SVG renkleri – SENDEKİ MEVCUT YAPIDAN ALINDI */
    .ogan-table-actions svg .b {
        fill: #9ca3af;
        transition: fill .2s;
    }

    .ogan-table-actions svg:hover .b {
        fill: #3464e0;
    }

body.darkMode .ogan-table-actions svg .b {
    fill: #d1d5db;
}

body.darkMode .ogan-table-actions svg:hover .b {
    fill: #ffffff;
}


/* Dropdown menu */
.defaultEditMenu {
    position: absolute;
    right: 0;
    top: 32px;
    list-style: none;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px 0;
    min-width: 140px;
    display: none;
    z-index: 9999;
}

    .defaultEditMenu.left {
        right: auto; /* sağ konumunu iptal et */
        left: 0; /* soldan hizala */
    }

.ogan-table-actions.is-open .defaultEditMenu {
    display: block !important;
}



/* Menü itemleri */
.defaultEditMenu li a {
    display: block;
    padding: 6px 12px;
    font-size: 0.8125rem;
    text-decoration: none;
    color: #111827;
    white-space: nowrap;
}

    .defaultEditMenu li a:hover {
        background-color: #f3f4f6;
    }

/* Dark mode menü */
body.darkMode .defaultEditMenu {
    background-color: #1f2937;
    border-color: #374151;
}

    body.darkMode .defaultEditMenu li a {
        color: #e5e7eb;
    }

        body.darkMode .defaultEditMenu li a:hover {
            background-color: #111827;
        }


/* ==========================================================================
   5. GENERAL TABLE TWEAKS – AdminLTE ile Çakışmayı Önleyici
   ========================================================================== */

.table th,
.table td {
    vertical-align: middle !important;
    padding: .5rem .75rem !important;
}

/* Çok kolonda title kaymasın */
.table thead th {
    white-space: nowrap;
}


/* ==========================================================================
   6. DARK MODE GLOBAL FİNAL DOKUNUŞLAR
   ========================================================================== */

body.darkMode .table {
    background-color: #1f2937 !important;
}

    body.darkMode .table td {
        color: #e5e7eb !important;
    }

body.darkMode .table-striped tbody tr:nth-of-type(odd) {
    background-color: #111827 !important;
}

/* =======================
   OGAN – Data List Fixleri
   AdminLTE 3.2 + BS4
   ======================= */

/* 1) Sayfa dikey scroll alabilsin */
body {
    overflow-y: auto;
}

/* 2) Advanced Search filter tablosu – yatay scroll */
.filtertable-wrapper {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

    .filtertable-wrapper table {
        min-width: 900px;
        white-space: nowrap;
    }

/* 3) Ana data tablosu – yatay scroll + header görünürlüğü */

.tableContainer {
    max-width: 100%;
    overflow-x: auto; /* geniş kolonlarda yatay scroll */
    overflow-y: visible; /* dikey scroll'u sayfa alsın */
}

    .tableContainer table {
        min-width: 900px; /* çok kolonlu tablolar için minimum genişlik */
        white-space: nowrap; /* hücreler satır atlamasın, yataya taşsın */
    }

    /* Header – light mode */
    .tableContainer thead.text-white th {
        background-color: #f3f4f6; /* açık gri zemin */
        color: #111827; /* koyu yazı rengi */
        font-weight: 600;
        font-size: 0.875rem;
    }

        /* Header’daki sort linkleri */
        .tableContainer thead.text-white th a {
            color: #4b5563;
        }

            .tableContainer thead.text-white th a:hover {
                text-decoration: none;
            }

/* Header – dark mode */
body.darkMode .tableContainer thead.text-white th {
    background-color: #111827;
    color: #e5e7eb;
    border-color: #374151;
}

    body.darkMode .tableContainer thead.text-white th a {
        color: #e5e7eb;
    }

/* Satır renkleri – dark mode */
body.darkMode .tableContainer tbody tr:nth-child(odd) {
    background-color: #020617;
}

body.darkMode .tableContainer tbody tr:nth-child(even) {
    background-color: #0b1120;
}

body.darkMode .tableContainer tbody td {
    color: #e5e7eb;
}


/* 4) Üç noktalı satır aksiyon menüsü görünürlük iyileştirme */

.ogan-table-actions .dropdown-menu {
    min-width: 150px;
}

body.darkMode .ogan-table-actions .dropdown-menu {
    background-color: #111827;
    border-color: #374151;
}

    body.darkMode .ogan-table-actions .dropdown-menu a {
        color: #e5e7eb;
    }

/* 5) Paging ve toplam kayıt bilgisi – yazı renkleri */

.table tfoot td,
.table tfoot span,
.table tfoot a,
.table tfoot .pagination {
    font-size: 0.875rem;
}

body.darkMode .table tfoot td,
body.darkMode .table tfoot span,
body.darkMode .table tfoot a {
    color: #e5e7eb;
}


/* Filter header – light mode */
#filtertable thead th {
    background-color: #f3f4f6;
    color: #1f2937;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Filter body – light mode */
#filtertable tbody td {
    background-color: #ffffff;
    color: #1f2937;
    border-color: #e5e7eb;
}


/* Dark mode – filter rows */
body.darkMode #filtertable tbody td {
    background-color: #0f172a !important;
    color: #e5e7eb !important;
    border-color: #374151 !important;
}

/* Filter içindeki select–input görünümleri */
body.darkMode #filtertable select,
body.darkMode #filtertable input,
body.darkMode #filtertable textarea {
    background-color: #1e293b !important;
    color: #e5e7eb !important;
    border: 1px solid #475569 !important;
}

/* Filter içinde bootstrap dropdown arrow görünürlüğü */
body.darkMode #filtertable .custom-select {
    background-color: #1e293b !important;
    color: #e5e7eb !important;
    border-color: #475569 !important;
}

/* Filter butonları */
body.darkMode #filtertable button {
    background-color: #2563eb !important;
    color: white !important;
}

/* Filter table borders */
body.darkMode #filtertable td,
body.darkMode #filtertable th {
    border-color: #475569 !important;
}

/* ===== BUTTON BAR FIX ===== */
.button-bar-wrapper {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 15px 0;
}

/* Download butonunun doğru buton gibi görünmesi */
#dowloadbutton {
    font-size: 14px;
    color: #fff !important;
    background: #1976d2;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    width: auto;
    height: auto;
    margin: 0;
}

    #dowloadbutton:hover {
        background: #125a9d;
    }

.button-bar-wrapper .buttonClassic {
    margin: 0 !important;
}

/* rows yüksekliği otomatik */
.rows {
    height: auto !important;
}

    /* table container fazla boşluk bırakmasın */
    .rows .centerCol .tableContainer {
        height: auto !important;
        max-height: calc(100vh - 260px) !important; /* Filter + butonlar için optimum */
        overflow-y: auto;
    }

body.darkMode #filterwrapper table thead th {
    background-color: #1f2937 !important; /* koyu gri */
    color: #e5e7eb !important; /* açık gri */
    border-color: #374151 !important;
}

body.darkMode #filterwrapper select,
body.darkMode #filterwrapper input,
body.darkMode #filterwrapper textarea {
    background-color: #111827 !important;
    color: #e5e7eb !important;
    border: 1px solid #374151 !important;
}

    body.darkMode #filterwrapper select option {
        background-color: #111827 !important;
        color: #e5e7eb !important;
    }

body.darkMode #filterwrapper .buttonClassic {
    background-color: #2563eb !important;
    color: white !important;
}

body.darkMode #filterwrapper table tbody tr td {
    background-color: #0f172a !important;
    color: #e5e7eb !important;
}

/* --- AdminLTE uyumlu, footer taşırmayan doğru content-wrapper --- */



/* AdminLTE uyumlu wrapper */
.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Content tüm boşluğu doldursun */
.content-wrapper {
    flex: 1 0 auto;
    height: auto !important;
}

/* Footer wrapper içinde dibe oturmalı */
.main-footer,
.footer {
    flex-shrink: 0;
    margin: 0;
    padding: 10px 20px;
    position: relative !important; /* absolute DEĞİL */
    bottom: 0 !important;
    width: 100%;
}

/* FILTER + LIST TABLE DARK MODE HEADER */
body.darkMode #filtertable thead th,
body.darkMode .ogan-list-table thead th {
    background-color: #111827 !important;
    color: #e5e7eb !important;
    border-color: #374151 !important;
}

body.darkMode .selectize-control.single .selectize-input {
    background: #0f172a !important;
    border: 1px solid #334155 !important;
    color: #e5e7eb !important;
}

    body.darkMode .selectize-control.single .selectize-input input::placeholder {
        color: #94a3b8 !important;
    }

body.darkMode .selectize-dropdown.single {
    background: #1e293b !important;
    border: 1px solid #334155 !important;
    color: #e5e7eb !important;
}

body.darkMode .selectize-dropdown .option {
    background: #1e293b !important;
    color: #e5e7eb !important;
}

    body.darkMode .selectize-dropdown .option:hover,
    body.darkMode .selectize-dropdown .option.active {
        background: #334155 !important;
        color: #fff !important;
    }

body.darkMode .selectize-control.single .selectize-input:after {
    border-color: #e5e7eb transparent transparent transparent !important;
}

#filtertable thead td,
.ogan-list-table thead td {
    font-size: 0.875rem;
    font-weight: 600;
    background-color: #f3f4f6;
    color: #111827;
    vertical-align: middle;
    white-space: nowrap;
    border-bottom: 1px solid #e5e7eb;
}

body.darkMode #filtertable thead td,
body.darkMode .ogan-list-table thead td {
    background-color: #111827 !important;
    color: #e5e7eb !important;
    border-color: #374151 !important;
}


/* Light mode icon fill */
body:not(.darkMode) .defaultEditMenu li a {
    color: #111827 !important; /* siyah / gri-900 */
}

    body:not(.darkMode) .defaultEditMenu li a svg .b {
        fill: #111827 !important;
    }

/* =========================
   DARK MODE – FORM CONTAINER
   ========================= */

/* Sayfa arka planı */
body.darkMode {
    background-color: #050816; /* zaten yakın bir ton kullanıyorsun gibi, istersen değiştir */
    color: #e5e7eb;
}

    /* Kart komple koyu olsun */
    body.darkMode .card {
        background-color: #0f172a; /* lacivertimsi koyu */
        color: #e5e7eb;
        border-color: #1f2937;
    }

    /* Card header */
    body.darkMode .card-header {
        background-color: transparent;
        border-bottom-color: #1f2937;
    }

    /* Input / textarea / select (bootstrap) */
    body.darkMode .card .form-control,
    body.darkMode .card .form-select {
        background-color: #020617;
        border-color: #334155;
        color: #e5e7eb;
    }

    /* Placeholder – senin field-wrapper label’ların */
    body.darkMode .card .field-placeholder span,
    body.darkMode .card .selectHeader,
    body.darkMode .card .addNewSampleTextCheckBox {
        color: #cbd5f5; /* açık gri/mavi */
    }

    /* Checkbox hizası bozulmasın, arka planla uyumlu olsun */
    body.darkMode .card .openInputChecks label {
        color: #e5e7eb;
    }

    /* Selectize (zaten koyu, ama tam uyum için) */
    body.darkMode .card .selectize-control.panelSelect.single .selectize-input {
        background-color: #020617;
        border-color: #334155;
        color: #e5e7eb;
    }

    body.darkMode .card .selectize-dropdown.panelSelect {
        background-color: #020617;
        border-color: #334155;
        color: #e5e7eb;
    }

    /* Uyarı metni (informationText) – inline red dursun ama dark mode'da da okunaklı olsun */
    body.darkMode #informationText {
        color: #fecaca !important; /* açık kırmızı */
    }

/* DARKMODE SELECTBOX FIX */
html.dark-mode select.form-control,
html.dark-mode .custom-select,
html.dark-mode .panelSelect select {
    background-color: #2a2a2a !important;
    color: #fff !important;
    border-color: #555 !important;
}

/* Selectize dark fix */
html.dark-mode .selectize-input {
    background-color: #2a2a2a !important;
    border-color: #555 !important;
    color: #fff !important;
}

html.dark-mode .selectize-dropdown {
    background-color: #2a2a2a !important;
    color: #fff !important;
}

/* Tüm datetime-local inputlarını Bootstrap inputlarıyla aynı boyuta getir */
/* Light & Dark mode uyumlu base stil */
/* DateTime inputlarını normal inputlarla aynı boyuta getir */
.dataTimeLocalClick {
    height: 40px !important; /* Bootstrap input standard */
    padding: 6px 12px !important;
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    line-height: 1.428571 !important;
    width: 100% !important;
    box-sizing: border-box;
}

    /* Takvim ikonu hizasını düzelt */
    .dataTimeLocalClick::-webkit-calendar-picker-indicator {
        cursor: pointer;
        padding: 0;
        margin: 0;
    }


:root {
    --input-bg: #fff;
    --input-color: #212529;
    --input-border: #ced4da;
    --calendar-icon-filter: invert(0);
}


body.dark-mode {
    --input-bg: #111;
    --input-color: #f1f1f1;
    --input-border: #444;
    --calendar-icon-filter: invert(1);
}


/* Dark mode'da hamburger ikonunu zorla görünür yap */
.darkMode #sidebarToggle i,
.darkMode #sidebarToggle svg {
    color: #ffffff !important; /* beyaz ikon */
    opacity: 1 !important; /* saydamlığı sıfırla */
    filter: none !important; /* olası karartmaları kaldır */
    mix-blend-mode: normal !important;
}

/* Hover'da açık mavi olsun */
.darkMode #sidebarToggle:hover i,
.darkMode #sidebarToggle:hover svg {
    color: #4da3ff !important;
}



/* Datetime input'larını selectbox ile hizala */
.panelSelectCustom input[type="datetime-local"],
.form-floating input[type="datetime-local"] {
    height: 34px !important; /* Select box ile aynı yükseklik */
    padding: 12px 14px !important; /* Aynı padding */
    font-size: 14px !important;
    line-height: 1.4 !important;
    border: 1px solid var(--input-border, #ced4da);
    border-radius: 6px;
    width: 100%;
    background: var(--input-bg, #fff);
    color: var(--input-color, #222);
    box-sizing: border-box;
}

/* Chrome icon hizası */
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    padding: 0;
    margin: 0;
}

/* Dark mode destek */
.darkMode input[type="datetime-local"] {
    background: #0f172a !important;
    color: #f1f1f1 !important;
    border-color: #334155 !important;
}

/* Dark mode destek */
.darkMode label {
    color: #e5e7eb !important;
}

/* Form alanları arası dikey boşluk */
.col-md-3,
.panelSelectCustom,
.form-floating {
    margin-bottom: 16px !important;
}

    .panelSelectCustom select[multiple] {
        min-height: 80px; /* varsayılan yükseklik */
        max-height: 150px; /* çok uzamasın */
        overflow-y: auto; /* içerik artınca scroll çıksın */
        border-radius: 6px;
        border: 1px solid #ced4da;
        padding: 6px;
        font-size: 14px;
        width: 100%;
        background: var(--input-bg);
        color: var(--input-color);
    }

.field-wrapper input[type="file"] + .field-placeholder {
    transform: translateY(-9px) scale(.85);
    opacity: 1 !important;
    top: 0 !important;
    left: 45px;
}

/* DARK MODE: File input label yukarı çıktığında beyaz arka plan */
.darkMode .field-wrapper input[type="file"] + .field-placeholder span {
    background: #ffffff !important;
    padding: 0 6px !important;
    color: #0f1624 !important; /* koyu lacivert */
    border-radius: 4px;
}

.navbar-dark .navbar-nav .nav-link .fas {
    color: rgba(255,255,255,.5);
    opacity: .7;
}




/* ===============================
   DARK MODE — INPUT FIX
   Arka plan lacivert KALSIN
   =============================== */

/* Input arka planı lacivert tonuna çek */
.darkMode .field-wrapper input.form-control,
.darkMode .field-wrapper input[type="text"],
.darkMode .field-wrapper input[type="password"],
.darkMode .field-wrapper input[type="file"],
.darkMode .panelSelectCustom select {
    background-color: #0f1624 !important; /* lacivert — senin sayfa tonu */
    color: #ffffff !important; /* input yazısı beyaz */
    border: 1px solid #3b455a !important;
}

/* Dark mode: textarea boşken label içerideyken beyaz kutu olmasın */
.darkMode .field-wrapperTextArea:not(.hasValue) .field-placeholder span {
    background: transparent !important;
    color: #6f7a95 !important;
}

/* Dark mode: label yukarı çıktığında beyaz chip + koyu yazı */
.darkMode .field-wrapperTextArea textarea:focus ~ .field-placeholder span,
.darkMode .field-wrapperTextArea.hasValue .field-placeholder span {
    background: #ffffff !important;
    padding: 0 4px !important;
    color: #0f172a !important;
}

/* Dark mode: yukarı çıkan label'ın kendi rengi de koyu olsun */
.darkMode .field-wrapperTextArea textarea:focus ~ .field-placeholder,
.darkMode .field-wrapperTextArea.hasValue .field-placeholder {
    color: #0f172a !important;
}


/* Input boşken (hasValue yokken) placeholder daha soluk olsun */
.darkMode .field-wrapper:not(.hasValue) .field-placeholder span {
    color: #6f7a95 !important; /* soluk gri-mavi */
    background: transparent !important;
}

/* Yukarı çıkan placeholder (hasValue) MAVI olsun */
.darkMode .field-wrapper.hasValue .field-placeholder span {
    color: #cbd5f5 !important; /* açık mavi — okunabilir */
    background: transparent !important;
}

/* File input butonu */
.darkMode input[type="file"]::-webkit-file-upload-button {
    background-color: #1c2536 !important;
    color: #dce2ef !important;
    border: none !important;
}
/* Input değeri varsa (label yukarı çıkmışsa) — beyaz kutu arkaplanını geri getir */
.darkMode .field-wrapper.hasValue .field-placeholder span {
    background: #ffffff !important; /* her zaman beyaz */
    padding: 0 4px !important; /* kutu görünümü için */
    color: #0f172a !important; /* koyu lacivert yazı rengi */
    border-radius: 0px;
}
/* Label yukarı kalktığında (focus veya value), beyaz kutu yap */
.darkMode .field-wrapper input:focus + .field-placeholder span,
.darkMode .field-wrapper.hasValue .field-placeholder span {
    background: #ffffff !important;
    padding: 0 4px !important;
    color: #0f172a !important; /* koyu lacivert */
    border-radius: 0px;
}

/* Dark mode: Chrome/Edge autofill beyaz arka planını bastır */
.darkMode input:-webkit-autofill,
.darkMode input:-webkit-autofill:hover,
.darkMode input:-webkit-autofill:focus,
.darkMode textarea:-webkit-autofill,
.darkMode textarea:-webkit-autofill:hover,
.darkMode textarea:-webkit-autofill:focus,
.darkMode select:-webkit-autofill,
.darkMode select:-webkit-autofill:hover,
.darkMode select:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff !important;
    box-shadow: 0 0 0px 1000px #0f1624 inset !important; /* senin input bg tonun */
    -webkit-box-shadow: 0 0 0px 1000px #0f1624 inset !important;
    transition: background-color 9999s ease-out 0s;
}

/* Firefox (varsa) */
.darkMode input:-moz-autofill,
.darkMode textarea:-moz-autofill,
.darkMode select:-moz-autofill {
    box-shadow: 0 0 0px 1000px #0f1624 inset !important;
    -moz-text-fill-color: #ffffff !important;
}
/* Dark mode: panelSelectCustom üst label (selectHeader) beyaz kalmasın */
body.darkMode .panelSelectCustom .selectHeader,
.darkMode .panelSelectCustom .selectHeader,
body.darkMode .multiCustom .selectHeader,
.darkMode .multiCustom .selectHeader {
    background: #0f1624 !important; /* select/input bg tonunla aynı */
    color: #cbd5f5 !important; /* okunur açık ton */
}
/* Dark mode: selectHeader label "chip" beyaz kalsın, yazı koyu olsun (3. resimdeki gibi) */
body.darkMode .panelSelectCustom .selectHeader,
body.darkMode .multiCustom .selectHeader {
    background: #ffffff !important; /* yazının arkasındaki beyaz alan geri gelsin */
    color: #0f1624 !important; /* beyaz üstünde okunur koyu yazı */
    padding: 0 6px !important; /* chip biraz nefes alsın */
    border-radius: 4px; /* mevcut file input chip ile uyumlu */
}
/* Light mode: select üst label rengi, input floating placeholder ile aynı olsun */
body:not(.darkMode) .panelSelectCustom .selectHeader,
body:not(.darkMode) .multiCustom .selectHeader {
    color: #1a73e8 !important; /* input focus/floating mavi */
}
/* Select üst label (selectHeader) input floating label gibi normal ağırlıkta olsun */
.panelSelectCustom .selectHeader,
.multiCustom .selectHeader {
    font-weight: 400 !important; /* normal */
    letter-spacing: normal;
}

.tableContainer {
    padding-bottom: 30px;
}

#dowloadbutton.is-downloading {
    pointer-events: none;
    opacity: .85;
    position: relative;
}

    #dowloadbutton.is-downloading::before {
        content: '';
        display: inline-block;
        width: 14px;
        height: 14px;
        margin-right: 8px;
        vertical-align: -2px;
        border: 2px solid currentColor;
        border-right-color: transparent;
        border-radius: 50%;
        animation: downloadSpin .7s linear infinite;
    }

@keyframes downloadSpin {
    to {
        transform: rotate(360deg);
    }
}