.ccb-sidebar-menu {
    position: fixed;
    z-index: 5;
    background: #fff;
    border: 2px solid #D6D6D6;
    border-radius: 5px 0 0 5px;
}

.ccb-sidebar-menu.ccb-right {
    right: 0;
    border-right: none;
}

.ccb-sidebar-menu.ccb-left {
    left: 0;
    border-left: none;
    border-radius: 0 5px 5px 0;
}

.ccb-sidebar-menu.ccb-top {
    top: 20px;
}

.ccb-sidebar-menu.ccb-center {
    top: 50%;
    transform: translateY(-50%);
}

.ccb-sidebar-menu.ccb-bottom {
    bottom: 20px;
}

.ccb-menu-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    text-decoration: none;
    color: #333;
    background: #fff;
    border-bottom: 2px solid #D6D6D6;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.ccb-menu-item:last-child {
    border-bottom: none;
}

.ccb-menu-item:hover {
    background: #F5F5F5;
}

.ccb-menu-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.ccb-menu-item span {
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    width: 0;
    margin-left: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.ccb-sidebar-menu:hover .ccb-menu-item span {
    opacity: 1;
    width: auto;
    margin-left: 12px;
}

.ccb-floating-btn {
    position: fixed;
    z-index: 4;
    background: #fff;
    border: 1px solid #D6D6D6;
    border-radius: 8px;
    padding: 8px 8px 12px 8px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ccb-floating-btn:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.ccb-floating-btn img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.ccb-floating-btn span {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.ccb-floating-btn.ccb-right {
    right: 2px;
}

.ccb-floating-btn.ccb-left {
    left: 2px;
}

.ccb-floating-btn.ccb-top {
    top: 20px;
}

.ccb-floating-btn.ccb-center {
    top: 50%;
    transform: translateY(-50%);
}

.ccb-floating-btn.ccb-bottom {
    bottom: 20px;
}

@media (max-width: 768px) {
    .ccb-floating-btn {
        display: flex !important;
    }
    
    .ccb-sidebar-menu {
        display: none !important;
    }
    
    .ccb-sidebar-menu.active {
        display: block !important;
    }
    
    .ccb-menu-item {
        padding: 8px 10px;
    }
    
    .ccb-menu-item img {
        width: 28px;
        height: 28px;
    }
    
    .ccb-menu-item span {
        font-size: 12px;
        opacity: 1;
        width: auto;
        margin-left: 10px;
    }
}

@media (min-width: 769px) {
    .ccb-floating-btn {
        display: none !important;
    }
}