/* General body styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
    display: flex;
}
/* Sidebar styling */
.sidebar {
    width: 260px;
    background-color: #2e3a4c;
    height: 100vh;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    box-sizing: border-box;
}
.sidebar-header {
    display: flex;
    align-items: center;
    padding: 0 20px 20px 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
.sidebar-header .logo-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.sidebar-header .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-menu li {
    margin-bottom: 5px;
}
.sidebar-menu .menu-category {
    font-size: 14px;
    color: #eee;
    padding: 10px 20px;
    margin-top: 15px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: bold;
}
.sidebar-menu .menu-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: background-color 0.2s;
}
.sidebar-menu .menu-item:hover,
.sidebar-menu .menu-item.active {
    background-color: #3e4a5c;
    color: #fff;
}
.sidebar-menu .menu-item i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}
.sidebar-menu .menu-item.active i {
    color: #fff;
}
.menu-arrow {
    margin-left: auto;
    font-size: 12px;
    color: #fff;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 260px; /* Adjust based on sidebar width */
    right: 0;
    height: 60px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 8px 12px;
}
.search-box i {
    color: #888;
    margin-right: 10px;
}
.search-box input[type="text"] {
    border: none;
    outline: none;
    font-size: 14px;
    width: 200px;
}
.user-info {
    display: flex;
    align-items: center;
}
.user-info i {
    color: #888;
    margin-right: 15px;
}
.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
}
.user-info span {
    font-weight: bold;
    color: #333;
}
.right-container {
    flex: 1;
    padding-top: 75px; /* Space for fixed top bar */
    padding-left: 0;
    padding-right: 0;
}
