/* ############################################ BODY ############################################*/
body {
    overflow-x: hidden;
}

/*######################################## BOTTOM BAR ############################################*/
.bottom-bar {
    position: fixed;
    bottom: 0px;
    z-index: 1100;
    border-radius: 5px;
    width: calc(100% - 235px);
    transition: width .3s ease;
}

.bottom-bar.hide {
    width: calc(100% - 15px);
    transition: width .3s ease;
}

#adres {
    min-height: 8rem;
}

/* ############################################ SIDEBAR ############################################*/
#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 100vh;
    background: #212529;
    color: #fff;
    z-index: 1050;
    transition: transform .3s ease;
}

/* ############################################ DESKTOP HIDE ############################################ */
#sidebar.collapsed {
    transform: translateX(-220px);
}

#topbar {
    color: #fff;
}

#topbar>.btn-outline-secondary:hover {
    color: darkslategray;
}

/* ############################################ CONTENT ############################################ */
#content {
    margin-left: 220px;
    transition: margin-left .3s ease;
    margin-bottom: 3.5rem;
}

/* ############################################ DESKTOP CONTENT FULL ############################################ */
#content.full {
    margin-left: 0;
}

/* ############################################ TOPBAR ############################################ */
#topbar {
    position: sticky;
    top: 0;
    z-index: 1100;
}

/* ############################################ ICONS SETTİNG ############################################*/
.icon-padding-right {
    padding-right: 15px;
}

.icon-padding-left {
    padding-left: 70px;
}

#row-cols-auto i {
    color: blue;
}

table .bi-file-earmark-text {
    color: #212529;

}

table .btn-outline-secondary:hover {
    color: #fff;
}

/*############################################ TABLE ############################################*/
table {
    font-size: 14px;
}

/* ############################################ NAV LINK ############################################ */
.nav-link {
    color: #adb5bd;
    border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
    background: #0d6efd;
    color: #fff;
}

/* ############################################ MOBILE ############################################ */
@media (max-width: 768px) {

    #sidebar {
        transform: translateX(-220px);
    }

    #sidebar.show {
        transform: translateX(0px);
    }

    #content {
        margin-left: 0;
    }

    .bottom-bar{
        position: fixed;
        width: calc(100% - 17px);
    }
}
/* ############################################ LOGİN SAYFASI ############################################ */
.login-btn{
    max-width: 150px;
}