.sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin: 5px 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px;
    color: #2c4964;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link i {
    font-size: 1.25rem;
    min-width: 40px;
    text-align: center;
}

.nav-text {
    width: 0;
    overflow: hidden;
    transition: width 0.3s ease;
    display: inline-block;
}

.sidebar.active .nav-text {
    width: 100px; /* Adjust this value based on your text length */
    margin-left: 8px;
}

.nav-link:hover {
    color: #1a76d1;
    background: rgba(26, 118, 209, 0.1);
}

@media (max-width: 768px) {
    .sidebar {
        top: auto;
        bottom: 25%;
        left: 0px;
        transform: none;
        border-radius: 25px;
    }

    .sidebar.active {
        border-radius: 15px;
    }
}