/* @import url('https://fonts.googleapis.com/css?family=Poppins:400,700,900');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

header {
    width: 100%;
    height: 100px;
    box-shadow: 4px 2px 10px rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    position: fixed;
    background-color: #fff;
}

.page-content {
    width: 100%;
    min-height: 100vh;
    padding-top: 100px;
    padding-left: 130px;
}

header .logo {
    height: 100%;
    font-size: 30px;
}

header .brand-title {
    font-weight: 700;
    font-size: 30px;
}

header .profile {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .profile p {
    font-size: 18px;
    padding: 5px;
}

header .profile img {
    width: 50px;
    height: 50px;
    background-color: #000;
    border-radius: 50%;
}

header .profile i {
    padding: 15px;
    font-size: 25px;
}

aside {
    top: 100px;
    position: fixed;
    width: 130px;
}

aside .aside_link {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    font-size: 15px;
    background-color: #fff;
    color: #000;
    transition: all .2s ease;
}

aside .aside_link:hover {
    background-color: #dfdfdf;
    border-radius: 20px;
}

aside .aside_link i {
    font-size: 26px;
    padding: 5px;
}

.pages {
    display: flex;
}

aside .aside_link .not-count {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: green;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    position: fixed;
    left: 90px;
    bottom: 300px;
    border-radius: 50%;
    padding: 10px;
}

aside .aside_link .request-count {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: green;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    position: fixed;
    left: 90px;
    bottom: 200px;
    border-radius: 50%;
    padding: 10px;
} */


@import url('https://fonts.googleapis.com/css?family=Poppins:400,700,900');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8f9fa;
}

/* Header */
header {
    width: 100%;
    height: 80px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    top: 0;
    z-index: 999;
}

header .logo {
    font-size: 24px;
    color: #0c6543;
    display: flex;
    align-items: center;
    gap: 8px;
}

header .brand-title {
    font-weight: 700;
    font-size: 20px;
    color: #0000;
}

header .profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .profile p {
    font-size: 16px;
    color: #333;
}

header .profile i {
    font-size: 20px;
    color: #000;
    cursor: pointer;
}

/* Page Content */
.page-content {
    width: 100%;
    padding: 100px 20px 20px 150px;
    min-height: 100vh;
}

/* Sidebar */
aside {
    position: fixed;
    top: 80px;
    left: 0;
    width: 130px;
    height: calc(100vh - 80px);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    border-right: 1px solid #eee;
}

aside .aside_link {
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #023a25;
    padding: 12px;
    transition: all 0.3s ease;
}

aside .aside_link:hover {
    background-color: #e1f1ec;
    border-radius: 10px;
}

aside .aside_link i {
    font-size: 25px;
    display: block;
    margin-bottom: 5px;
}

/* Notification badges */
.not-count,
.request-count {
    position: fixed;
    left: 100px;
    width: 24px;
    height: 24px;
    background-color: #0c6543;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 
.not-count {
    bottom: 260px;
}

.request-count {
    bottom: 200px;
} */

/* Responsive Design */
@media (max-width: 768px) {
    .page-content {
        margin-top: 40px;
    }
    header {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }

    .page-content {
        padding: 140px 15px 20px 15px;
    }

    aside {
        /* position: fixed;
        top: 0;
        left: 0; */
        padding-top: 40px;
        flex-direction: row;
        height: 100px;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        justify-content: space-around;
        z-index: 998;
    }

    aside .aside_link {
        flex-direction: column;
        padding: 6px;
        font-size: 10px;
    }

    aside .aside_link i {
        font-size: 16px;
    }

    .not-count, .request-count {
        position: absolute;
        bottom: unset;
        top: -8px;
        right: -8px;
    }
}

@media (max-width: 480px) {
    header .brand-title {
        font-size: 16px;
    }

    header .logo {
        font-size: 18px;
    }

    header .profile p {
        display: none;
    }

    .page-content {
        padding-left: 10px;
        padding-right: 10px;
    }
}
