:root {
    --text-color: #202020;
    --primary-color: #F09F5A;

}

/* global css reset start */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background-color: #eee;
}

a {
    text-decoration: none;
}

/* global css reset end */

/* top navbar css start */
.top_navbar {
    width: calc(100% - 240px);
    height: 60px;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #454545;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 200;
    transition: all 0.45s;
}

.top_navbar.toggle {
    width: 100%;
}


.top_navbar .branch_name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}

.top_navbar .bar {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.top_navbar .bar i {
    font-size: 23px;
    color: #fff;
}

/* top navbar css end */
/* layout css start */
body {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* layout css end */

/* sidebar css start */
.sidebar {
    width: 250px;
    height: 100vh;
    padding-top: 20px;
    background-color: #f5f5f5;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.45s;
}

.sidebar .logo {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar .logo img {
    width: 100%;
}

.sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    margin-top: 10px;
}

.sidebar ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 20px;
    border-bottom: 0.5px solid #eeeeee;
    border-top: 0.5px solid #eeeeee;
    transition: all 0.45s;
}

.sidebar ul li:hover {
    background-color: var(--primary-color);
}

.sidebar ul li a {
    color: var(--text-color);
    font-size: 18px;
    transition: all 0.45s;
}

.sidebar ul li:hover a {
    color: #fff;
    transform: translateX(10px);
}

.sidebar.toggle {
    left: -270px;
}

/* sidebar css end */
/* main css start */
main {
    width: calc(100% - 250px);
    height: 100%;
    position: absolute;
    top: 0;
    left: 250px;
    margin-top: 70px;
    padding: 10px;
    transition: all 0.45s;
}

main.toggle {
    width: 100%;
    left: 0;
}

/* main css end */

/* login start */
.login_container{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
/* login end */