/* 批量操作按钮样式 */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.batch-create-btn,
.stop-btn {
    padding: 16px 48px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 140px;
}

/* 批量创建按钮 */
.batch-create-btn {
    background: linear-gradient(45deg, #17a2b8, #003366);
    color: #fff;
}

.batch-create-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
}

.batch-create-btn:active:not(:disabled) {
    transform: translateY(0);
}

/* 停止按钮 */
.stop-btn {
    background: #dc3545;
    color: #fff;
}

.stop-btn:hover:not(:disabled) {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.stop-btn:active:not(:disabled) {
    transform: translateY(0);
}

/* 按钮禁用状态 */
.batch-create-btn:disabled,
.stop-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.batch-create-btn:disabled:hover,
.stop-btn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .batch-create-btn,
    .stop-btn {
        padding: 14px 36px;
        font-size: 16px;
        min-width: 120px;
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .action-buttons {
        padding: 0 20px;
    }
    
    .batch-create-btn,
    .stop-btn {
        width: 100%;
        max-width: none;
    }
}