.right-sidebar {
    width: 200px;
    background: #fff;
    border-left: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    padding: 20px 10px;
    gap: 10px;
}

.action-btn {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    color: #fff;
}

.action-btn i {
    font-size: 16px;
}

.btn-import {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-import:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-copy {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.4);
}

.btn-save-quick {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.btn-save-quick:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.4);
}

.btn-save-sync {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.btn-save-sync:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 233, 123, 0.4);
}

.btn-clear {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.btn-clear:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(250, 112, 154, 0.4);
}

.btn-more {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
}

.btn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 237, 234, 0.4);
}

.btn-preview {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: #333;
}

.btn-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 154, 158, 0.4);
}

.btn-sync-wechat {
    background: linear-gradient(135deg, #5ee7df 0%, #b490ca 100%);
}

.btn-sync-wechat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 231, 223, 0.4);
}

.sidebar-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 10px 0;
}

.bottom-nav {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.bottom-nav-item {
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
}

.bottom-nav-item:hover {
    color: #ff6b35;
}