.sidebar {
    padding: 20px 10px;
    background: #1a1f2d;
    border-right: 1px solid #2a2f3d;
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    width: 280px;
    overflow-x: hidden;
}

.main-content {
    margin-left: 280px;
    overflow-x: hidden;
}

.tab-category {
    margin-bottom: 25px;
    border-bottom: 1px solid #2a2f3d;
    padding-bottom: 20px;
}

.tab-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.category-header {
    padding: 12px 20px;
    color: #63E6BE;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.category-header i {
    font-size: 16px;
    opacity: 0.9;
}

.tab-btn {
    width: 100%;
    padding: 12px 20px;
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

.tab-btn i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #2a2f3d;
    transform: translateX(5px);
}

.tab-btn:hover i {
    transform: scale(1.1);
}

.tab-btn.active {
    background: #2a2f3d;
    color: #63E6BE;
    font-weight: 600;
}

.tab-btn.active i {
    transform: scale(1.1);
}

/* Logo section styling */
.logo {
    padding: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #2a2f3d;
    display: flex;
    align-items: center;
}

.logo-text {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.employee-badge {
    font-size: 12px;
    color: #63E6BE;
    background: #2a2f3d;
    padding: 4px 10px;
    border-radius: 15px;
    display: inline-block;
    margin-top: 8px;
}

/* Scrollbar styling for sidebar */
.sidebar::-webkit-scrollbar {
    width: 3px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: transparent;
}

.sidebar:hover::-webkit-scrollbar-thumb {
    background: #2a2f3d;
    border-radius: 3px;
}

/* Add hover effects */
.tab-btn {
    position: relative;
    overflow: hidden;
}

.tab-btn::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: rgba(99, 230, 190, 0.1);
    transition: width 0.3s ease;
    z-index: 1;
}

.tab-btn:hover::after {
    width: 100%;
}

.tab-btn i,
.tab-btn span {
    position: relative;
    z-index: 2;
}

/* Category animations */
.category-header {
    position: relative;
    overflow: hidden;
}

.category-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #63E6BE, transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.tab-category:hover .category-header::after {
    transform: translateX(100%);
}

/* Active tab indicator */
.tab-btn.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background: #63E6BE;
    border-radius: 0 3px 3px 0;
}

/* Add this to prevent horizontal scrolling on the entire page */
body {
    overflow-x: hidden;
}

/* Add this to ensure proper dashboard container layout */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    position: relative;
} 