.workpulse-container {
    display: flex;
    min-height: 100vh;
}

.workpulse-layout {
    display: flex;
    width: 100%;
}

.workpulse-sidebar {
    width: 250px;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: width 0.3s ease;
}

.workpulse-sidebar.collapsed {
    width: 70px;
}

.workpulse-content {
    flex: 1;
    padding: 20px;
    margin-left: 250px;
    transition: margin-left 0.3s ease;
}

.workpulse-content.expanded {
    margin-left: 70px;
}

.workpulse-sidebar-header {
    padding: 25px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workpulse-sidebar-logo {
    width: 50px;
    height: 50px;
    background-color: #4661f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.workpulse-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    flex-grow: 1;
}

.workpulse-menu li {
    margin: 5px 0;
    padding: 0;
}

.workpulse-menu li a {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    color: #9ea9b7;
    text-decoration: none;
    transition: background-color 0.2s;
    font-size: 15px;
    border-radius: 8px;
    margin: 0 10px;
}

.workpulse-menu li a:hover {
    background-color: #f8f9fa;
    color: #4661f2;
}

.workpulse-menu li.active a {
    background-color: #eef1ff;
    color: #4661f2;
}

.workpulse-menu .menu-icon {
    margin-right: 12px;
    width: 24px;
    text-align: center;
    font-size: 18px;
    display: flex;
}

.menu-text {
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.workpulse-sidebar.collapsed .menu-text {
    opacity: 0;
    visibility: hidden;
    display: none;
}

.workpulse-sidebar.collapsed .menu-icon {
    margin-right: 0;
}

.workpulse-sidebar.collapsed .workpulse-menu li a {
    justify-content: center;
    padding: 15px 0;
}

.workpulse-menu-footer {
    margin-top: auto;
    padding: 20px 0;
}

.toggle-sidebar {
    position: fixed;
    left: 250px;
    bottom: 20px;
    background: white;
    border: 1px solid #e1e4e8;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: left 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.toggle-sidebar.collapsed {
    left: 70px;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.toggle-sidebar.collapsed .toggle-icon {
    transform: rotate(180deg);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .workpulse-sidebar {
        width: 70px;
    }
    
    .workpulse-content {
        margin-left: 70px;
    }
    
    .workpulse-sidebar .menu-text {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
    
    .workpulse-sidebar .menu-icon {
        margin-right: 0;
    }
    
    .workpulse-sidebar .workpulse-menu li a {
        justify-content: center;
        padding: 15px 0;
    }
    
    .toggle-sidebar {
        left: 70px;
    }
} 