.bamsat-wat-container {
    position: fixed;
    z-index: 9999;
    transition: all 0.3s ease;
}

.bamsat-wat-left {
    left: 0;
}

.bamsat-wat-right {
    right: 0;
}

.bamsat-wat-toggle {
    width: 50px;
    height: 50px;
    background: var(--bamsat-wat-bg-color);
    color: var(--bamsat-wat-text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.bamsat-wat-left .bamsat-wat-toggle {
    border-radius: 0 8px 8px 0;
}

.bamsat-wat-right .bamsat-wat-toggle {
    border-radius: 8px 0 0 8px;
}

.bamsat-wat-toggle:hover {
    opacity: 0.9;
}

.bamsat-wat-content {
    position: absolute;
    top: 0;
    background: var(--bamsat-wat-bg-color);
    width: 0;
    overflow: hidden;
    transition: width 0.3s ease;
}

.bamsat-wat-left .bamsat-wat-content {
    left: 50px;
    border-radius: 0 8px 8px 0;
}

.bamsat-wat-right .bamsat-wat-content {
    right: 50px;
    border-radius: 8px 0 0 8px;
}

.bamsat-wat-container.bamsat-wat-active .bamsat-wat-content {
    width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.bamsat-wat-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--bamsat-wat-text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bamsat-wat-item:last-child {
    border-bottom: none;
}

.bamsat-wat-item:hover {
    background: var(--bamsat-wat-hover-color);
}

.bamsat-wat-item i {
    font-size: 24px;
    min-width: 24px;
}

.bamsat-wat-text {
    font-size: 15px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.bamsat-wat-container.bamsat-wat-active .bamsat-wat-text {
    opacity: 1;
}

/* Mobile styles */
@media (max-width: 768px) {
    .bamsat-wat-toggle {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .bamsat-wat-container.bamsat-wat-active .bamsat-wat-content {
        width: 250px;
    }
    
    .bamsat-wat-item {
        padding: 12px 15px;
    }
    
    .bamsat-wat-item i {
        font-size: 20px;
    }
    
    .bamsat-wat-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .bamsat-wat-container.bamsat-wat-active .bamsat-wat-content {
        width: 220px;
    }
}